2003-04-15 10:51:55 +02:00
|
|
|
/* BFD back-end for Renesas H8/300 COFF binaries.
|
2001-03-08 22:04:02 +01:00
|
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2008-02-15 04:35:53 +01:00
|
|
|
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
1999-07-12 12:30:21 +02:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Written by Steve Chamberlain, <sac@cygnus.com>.
|
|
|
|
|
2002-11-15 12:18:49 +01:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-15 12:18:49 +01:00
|
|
|
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
|
2007-07-03 16:26:43 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-11-15 12:18:49 +01:00
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-15 12:18:49 +01:00
|
|
|
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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-15 12:18:49 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 16:26:43 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "libbfd.h"
|
|
|
|
#include "bfdlink.h"
|
|
|
|
#include "genlink.h"
|
|
|
|
#include "coff/h8300.h"
|
|
|
|
#include "coff/internal.h"
|
|
|
|
#include "libcoff.h"
|
2002-12-19 02:58:53 +01:00
|
|
|
#include "libiberty.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (1)
|
|
|
|
|
|
|
|
/* We derive a hash table from the basic BFD hash table to
|
2000-11-10 21:55:44 +01:00
|
|
|
hold entries in the function vector. Aside from the
|
1999-05-03 09:29:11 +02:00
|
|
|
info stored by the basic hash table, we need the offset
|
|
|
|
of a particular entry within the hash table as well as
|
|
|
|
the offset where we'll add the next entry. */
|
|
|
|
|
|
|
|
struct funcvec_hash_entry
|
2001-08-23 19:05:52 +02:00
|
|
|
{
|
|
|
|
/* The basic hash table entry. */
|
|
|
|
struct bfd_hash_entry root;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-23 19:05:52 +02:00
|
|
|
/* The offset within the vectors section where
|
|
|
|
this entry lives. */
|
|
|
|
bfd_vma offset;
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
struct funcvec_hash_table
|
2001-08-23 19:05:52 +02:00
|
|
|
{
|
|
|
|
/* The basic hash table. */
|
|
|
|
struct bfd_hash_table root;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-23 19:05:52 +02:00
|
|
|
bfd *abfd;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-23 19:05:52 +02:00
|
|
|
/* Offset at which we'll add the next entry. */
|
|
|
|
unsigned int offset;
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
|
|
|
funcvec_hash_newfunc
|
2003-07-11 13:08:30 +02:00
|
|
|
(struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_reloc_status_type special
|
2003-07-11 13:08:30 +02:00
|
|
|
(bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **);
|
2002-11-30 09:39:46 +01:00
|
|
|
static int select_reloc
|
2003-07-11 13:08:30 +02:00
|
|
|
(reloc_howto_type *);
|
2002-11-30 09:39:46 +01:00
|
|
|
static void rtype2howto
|
2003-07-11 13:08:30 +02:00
|
|
|
(arelent *, struct internal_reloc *);
|
2002-11-30 09:39:46 +01:00
|
|
|
static void reloc_processing
|
2003-07-11 13:08:30 +02:00
|
|
|
(arelent *, struct internal_reloc *, asymbol **, bfd *, asection *);
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean h8300_symbol_address_p
|
2003-07-11 13:08:30 +02:00
|
|
|
(bfd *, asection *, bfd_vma);
|
2002-11-30 09:39:46 +01:00
|
|
|
static int h8300_reloc16_estimate
|
2003-07-11 13:08:30 +02:00
|
|
|
(bfd *, asection *, arelent *, unsigned int,
|
|
|
|
struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
static void h8300_reloc16_extra_cases
|
2003-07-11 13:08:30 +02:00
|
|
|
(bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
|
|
|
|
bfd_byte *, unsigned int *, unsigned int *);
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean h8300_bfd_link_add_symbols
|
2003-07-11 13:08:30 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2001-08-23 19:05:52 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* To lookup a value in the function vector hash table. */
|
|
|
|
#define funcvec_hash_lookup(table, string, create, copy) \
|
|
|
|
((struct funcvec_hash_entry *) \
|
|
|
|
bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
|
|
|
|
|
|
|
|
/* The derived h8300 COFF linker table. Note it's derived from
|
|
|
|
the generic linker hash table, not the COFF backend linker hash
|
|
|
|
table! We use this to attach additional data structures we
|
|
|
|
need while linking on the h8300. */
|
2002-11-11 06:05:22 +01:00
|
|
|
struct h8300_coff_link_hash_table {
|
1999-05-03 09:29:11 +02:00
|
|
|
/* The main hash table. */
|
|
|
|
struct generic_link_hash_table root;
|
|
|
|
|
|
|
|
/* Section for the vectors table. This gets attached to a
|
|
|
|
random input bfd, we keep it here for easy access. */
|
|
|
|
asection *vectors_sec;
|
|
|
|
|
|
|
|
/* Hash table of the functions we need to enter into the function
|
|
|
|
vector. */
|
|
|
|
struct funcvec_hash_table *funcvec_hash_table;
|
|
|
|
};
|
|
|
|
|
2003-07-11 13:08:30 +02:00
|
|
|
static struct bfd_link_hash_table *h8300_coff_link_hash_table_create (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Get the H8/300 COFF linker hash table from a link_info structure. */
|
|
|
|
|
|
|
|
#define h8300_coff_hash_table(p) \
|
|
|
|
((struct h8300_coff_link_hash_table *) ((coff_hash_table (p))))
|
|
|
|
|
|
|
|
/* Initialize fields within a funcvec hash table entry. Called whenever
|
|
|
|
a new entry is added to the funcvec hash table. */
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
2003-07-11 13:08:30 +02:00
|
|
|
funcvec_hash_newfunc (struct bfd_hash_entry *entry,
|
|
|
|
struct bfd_hash_table *gen_table,
|
|
|
|
const char *string)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
struct funcvec_hash_entry *ret;
|
|
|
|
struct funcvec_hash_table *table;
|
|
|
|
|
|
|
|
ret = (struct funcvec_hash_entry *) entry;
|
|
|
|
table = (struct funcvec_hash_table *) gen_table;
|
|
|
|
|
|
|
|
/* Allocate the structure if it has not already been allocated by a
|
|
|
|
subclass. */
|
|
|
|
if (ret == NULL)
|
|
|
|
ret = ((struct funcvec_hash_entry *)
|
2002-12-19 02:58:53 +01:00
|
|
|
bfd_hash_allocate (gen_table,
|
|
|
|
sizeof (struct funcvec_hash_entry)));
|
1999-05-03 09:29:11 +02:00
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Call the allocation method of the superclass. */
|
|
|
|
ret = ((struct funcvec_hash_entry *)
|
2002-11-11 06:05:22 +01:00
|
|
|
bfd_hash_newfunc ((struct bfd_hash_entry *) ret, gen_table, string));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Note where this entry will reside in the function vector table. */
|
|
|
|
ret->offset = table->offset;
|
|
|
|
|
|
|
|
/* Bump the offset at which we store entries in the function
|
|
|
|
vector. We'd like to bump up the size of the vectors section,
|
|
|
|
but it's not easily available here. */
|
2003-10-17 12:23:33 +02:00
|
|
|
switch (bfd_get_mach (table->abfd))
|
|
|
|
{
|
|
|
|
case bfd_mach_h8300:
|
|
|
|
case bfd_mach_h8300hn:
|
|
|
|
case bfd_mach_h8300sn:
|
|
|
|
table->offset += 2;
|
|
|
|
break;
|
|
|
|
case bfd_mach_h8300h:
|
|
|
|
case bfd_mach_h8300s:
|
|
|
|
table->offset += 4;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Everything went OK. */
|
|
|
|
return (struct bfd_hash_entry *) ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the function vector hash table. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2003-07-11 13:08:30 +02:00
|
|
|
funcvec_hash_table_init (struct funcvec_hash_table *table,
|
|
|
|
bfd *abfd,
|
|
|
|
struct bfd_hash_entry *(*newfunc)
|
|
|
|
(struct bfd_hash_entry *,
|
|
|
|
struct bfd_hash_table *,
|
2006-03-16 13:20:16 +01:00
|
|
|
const char *),
|
|
|
|
unsigned int entsize)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Initialize our local fields, then call the generic initialization
|
|
|
|
routine. */
|
|
|
|
table->offset = 0;
|
|
|
|
table->abfd = abfd;
|
2006-03-16 13:20:16 +01:00
|
|
|
return (bfd_hash_table_init (&table->root, newfunc, entsize));
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the derived linker hash table. We use a derived hash table
|
2002-12-20 23:41:13 +01:00
|
|
|
basically to hold "static" information during an H8/300 coff link
|
1999-05-03 09:29:11 +02:00
|
|
|
without using static variables. */
|
|
|
|
|
|
|
|
static struct bfd_link_hash_table *
|
2003-07-11 13:08:30 +02:00
|
|
|
h8300_coff_link_hash_table_create (bfd *abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
struct h8300_coff_link_hash_table *ret;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt = sizeof (struct h8300_coff_link_hash_table);
|
|
|
|
|
2002-04-04 21:53:38 +02:00
|
|
|
ret = (struct h8300_coff_link_hash_table *) bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
if (!_bfd_link_hash_table_init (&ret->root.root, abfd,
|
2006-03-16 13:20:16 +01:00
|
|
|
_bfd_generic_link_hash_newfunc,
|
|
|
|
sizeof (struct generic_link_hash_entry)))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-04-04 21:53:38 +02:00
|
|
|
free (ret);
|
1999-05-03 09:29:11 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize our data. */
|
|
|
|
ret->vectors_sec = NULL;
|
|
|
|
ret->funcvec_hash_table = NULL;
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
/* OK. Everything's initialized, return the base pointer. */
|
1999-05-03 09:29:11 +02:00
|
|
|
return &ret->root.root;
|
|
|
|
}
|
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* Special handling for H8/300 relocs.
|
1999-05-03 09:29:11 +02:00
|
|
|
We only come here for pcrel stuff and return normally if not an -r link.
|
|
|
|
When doing -r, we can't do any arithmetic for the pcrel stuff, because
|
|
|
|
the code in reloc.c assumes that we can manipulate the targets of
|
2000-11-10 21:55:44 +01:00
|
|
|
the pcrel branches. This isn't so, since the H8/300 can do relaxing,
|
1999-05-03 09:29:11 +02:00
|
|
|
which means that the gap after the instruction may not be enough to
|
2000-11-07 06:04:04 +01:00
|
|
|
contain the offset required for the branch, so we have to use only
|
2000-06-27 03:31:59 +02:00
|
|
|
the addend until the final link. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-07-11 13:08:30 +02:00
|
|
|
special (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED,
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED,
|
|
|
|
PTR data ATTRIBUTE_UNUSED,
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED,
|
|
|
|
bfd *output_bfd,
|
|
|
|
char **error_message ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
2000-11-07 06:04:04 +01:00
|
|
|
/* Adjust the reloc address to that in the output section. */
|
|
|
|
reloc_entry->address += input_section->output_offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
2002-11-11 06:05:22 +01:00
|
|
|
static reloc_howto_type howto_table[] = {
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_RELBYTE, 0, 0, 8, FALSE, 0, complain_overflow_bitfield, special, "8", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
|
|
|
HOWTO (R_RELWORD, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, special, "16", FALSE, 0x0000ffff, 0x0000ffff, FALSE),
|
|
|
|
HOWTO (R_RELLONG, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, special, "32", FALSE, 0xffffffff, 0xffffffff, FALSE),
|
|
|
|
HOWTO (R_PCRBYTE, 0, 0, 8, TRUE, 0, complain_overflow_signed, special, "DISP8", FALSE, 0x000000ff, 0x000000ff, TRUE),
|
|
|
|
HOWTO (R_PCRWORD, 0, 1, 16, TRUE, 0, complain_overflow_signed, special, "DISP16", FALSE, 0x0000ffff, 0x0000ffff, TRUE),
|
|
|
|
HOWTO (R_PCRLONG, 0, 2, 32, TRUE, 0, complain_overflow_signed, special, "DISP32", FALSE, 0xffffffff, 0xffffffff, TRUE),
|
|
|
|
HOWTO (R_MOV16B1, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, special, "relaxable mov.b:16", FALSE, 0x0000ffff, 0x0000ffff, FALSE),
|
|
|
|
HOWTO (R_MOV16B2, 0, 1, 8, FALSE, 0, complain_overflow_bitfield, special, "relaxed mov.b:16", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
|
|
|
HOWTO (R_JMP1, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, special, "16/pcrel", FALSE, 0x0000ffff, 0x0000ffff, FALSE),
|
|
|
|
HOWTO (R_JMP2, 0, 0, 8, FALSE, 0, complain_overflow_bitfield, special, "pcrecl/16", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
|
|
|
HOWTO (R_JMPL1, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, special, "24/pcrell", FALSE, 0x00ffffff, 0x00ffffff, FALSE),
|
|
|
|
HOWTO (R_JMPL2, 0, 0, 8, FALSE, 0, complain_overflow_bitfield, special, "pc8/24", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
|
|
|
HOWTO (R_MOV24B1, 0, 1, 32, FALSE, 0, complain_overflow_bitfield, special, "relaxable mov.b:24", FALSE, 0xffffffff, 0xffffffff, FALSE),
|
|
|
|
HOWTO (R_MOV24B2, 0, 1, 8, FALSE, 0, complain_overflow_bitfield, special, "relaxed mov.b:24", FALSE, 0x0000ffff, 0x0000ffff, FALSE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* An indirect reference to a function. This causes the function's address
|
|
|
|
to be added to the function vector in lo-mem and puts the address of
|
|
|
|
the function vector's entry in the jsr instruction. */
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_MEM_INDIRECT, 0, 0, 8, FALSE, 0, complain_overflow_bitfield, special, "8/indirect", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Internal reloc for relaxing. This is created when a 16-bit pc-relative
|
|
|
|
branch is turned into an 8-bit pc-relative branch. */
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_PCRWORD_B, 0, 0, 8, TRUE, 0, complain_overflow_bitfield, special, "relaxed bCC:16", FALSE, 0x000000ff, 0x000000ff, FALSE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_MOVL1, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,special, "32/24 relaxable move", FALSE, 0xffffffff, 0xffffffff, FALSE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_MOVL2, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, special, "32/24 relaxed move", FALSE, 0x0000ffff, 0x0000ffff, FALSE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_BCC_INV, 0, 0, 8, TRUE, 0, complain_overflow_signed, special, "DISP8 inverted", FALSE, 0x000000ff, 0x000000ff, TRUE),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
HOWTO (R_JMP_DEL, 0, 0, 8, TRUE, 0, complain_overflow_signed, special, "Deleted jump", FALSE, 0x000000ff, 0x000000ff, TRUE),
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* Turn a howto into a reloc number. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define SELECT_RELOC(x,howto) \
|
2002-11-11 06:05:22 +01:00
|
|
|
{ x.r_type = select_reloc (howto); }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-04-24 14:36:08 +02:00
|
|
|
#define BADMAG(x) (H8300BADMAG (x) && H8300HBADMAG (x) && H8300SBADMAG (x) \
|
|
|
|
&& H8300HNBADMAG(x) && H8300SNBADMAG(x))
|
|
|
|
#define H8300 1 /* Customize coffcode.h */
|
1999-05-03 09:29:11 +02:00
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* Code to swap in the reloc. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
#define SWAP_IN_RELOC_OFFSET H_GET_32
|
|
|
|
#define SWAP_OUT_RELOC_OFFSET H_PUT_32
|
1999-05-03 09:29:11 +02:00
|
|
|
#define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \
|
|
|
|
dst->r_stuff[0] = 'S'; \
|
|
|
|
dst->r_stuff[1] = 'C';
|
|
|
|
|
|
|
|
static int
|
2003-07-11 13:08:30 +02:00
|
|
|
select_reloc (reloc_howto_type *howto)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
return howto->type;
|
|
|
|
}
|
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* Code to turn a r_type into a howto ptr, uses the above howto table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static void
|
2003-07-11 13:08:30 +02:00
|
|
|
rtype2howto (arelent *internal, struct internal_reloc *dst)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
switch (dst->r_type)
|
|
|
|
{
|
|
|
|
case R_RELBYTE:
|
|
|
|
internal->howto = howto_table + 0;
|
|
|
|
break;
|
|
|
|
case R_RELWORD:
|
|
|
|
internal->howto = howto_table + 1;
|
|
|
|
break;
|
|
|
|
case R_RELLONG:
|
|
|
|
internal->howto = howto_table + 2;
|
|
|
|
break;
|
|
|
|
case R_PCRBYTE:
|
|
|
|
internal->howto = howto_table + 3;
|
|
|
|
break;
|
|
|
|
case R_PCRWORD:
|
|
|
|
internal->howto = howto_table + 4;
|
|
|
|
break;
|
|
|
|
case R_PCRLONG:
|
|
|
|
internal->howto = howto_table + 5;
|
|
|
|
break;
|
|
|
|
case R_MOV16B1:
|
|
|
|
internal->howto = howto_table + 6;
|
|
|
|
break;
|
|
|
|
case R_MOV16B2:
|
|
|
|
internal->howto = howto_table + 7;
|
|
|
|
break;
|
|
|
|
case R_JMP1:
|
|
|
|
internal->howto = howto_table + 8;
|
|
|
|
break;
|
|
|
|
case R_JMP2:
|
|
|
|
internal->howto = howto_table + 9;
|
|
|
|
break;
|
|
|
|
case R_JMPL1:
|
|
|
|
internal->howto = howto_table + 10;
|
|
|
|
break;
|
|
|
|
case R_JMPL2:
|
|
|
|
internal->howto = howto_table + 11;
|
|
|
|
break;
|
|
|
|
case R_MOV24B1:
|
|
|
|
internal->howto = howto_table + 12;
|
|
|
|
break;
|
|
|
|
case R_MOV24B2:
|
|
|
|
internal->howto = howto_table + 13;
|
|
|
|
break;
|
|
|
|
case R_MEM_INDIRECT:
|
|
|
|
internal->howto = howto_table + 14;
|
|
|
|
break;
|
|
|
|
case R_PCRWORD_B:
|
|
|
|
internal->howto = howto_table + 15;
|
|
|
|
break;
|
|
|
|
case R_MOVL1:
|
|
|
|
internal->howto = howto_table + 16;
|
|
|
|
break;
|
|
|
|
case R_MOVL2:
|
|
|
|
internal->howto = howto_table + 17;
|
|
|
|
break;
|
|
|
|
case R_BCC_INV:
|
|
|
|
internal->howto = howto_table + 18;
|
|
|
|
break;
|
|
|
|
case R_JMP_DEL:
|
|
|
|
internal->howto = howto_table + 19;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-11 06:05:22 +01:00
|
|
|
#define RTYPE2HOWTO(internal, relocentry) rtype2howto (internal, relocentry)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-06-27 03:31:59 +02:00
|
|
|
/* Perform any necessary magic to the addend in a reloc entry. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define CALC_ADDEND(abfd, symbol, ext_reloc, cache_ptr) \
|
2002-11-11 06:05:22 +01:00
|
|
|
cache_ptr->addend = ext_reloc.r_offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
|
2002-11-11 06:05:22 +01:00
|
|
|
reloc_processing (relent, reloc, symbols, abfd, section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static void
|
2003-07-11 13:08:30 +02:00
|
|
|
reloc_processing (arelent *relent, struct internal_reloc *reloc,
|
|
|
|
asymbol **symbols, bfd *abfd, asection *section)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
relent->address = reloc->r_vaddr;
|
|
|
|
rtype2howto (relent, reloc);
|
|
|
|
|
|
|
|
if (((int) reloc->r_symndx) > 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx];
|
1999-05-03 09:29:11 +02:00
|
|
|
else
|
2003-02-20 19:59:32 +01:00
|
|
|
relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
relent->addend = reloc->r_offset;
|
|
|
|
relent->address -= section->vma;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2003-07-11 13:08:30 +02:00
|
|
|
h8300_symbol_address_p (bfd *abfd, asection *input_section, bfd_vma address)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
asymbol **s;
|
|
|
|
|
|
|
|
s = _bfd_generic_link_get_symbols (abfd);
|
|
|
|
BFD_ASSERT (s != (asymbol **) NULL);
|
|
|
|
|
|
|
|
/* Search all the symbols for one in INPUT_SECTION with
|
|
|
|
address ADDRESS. */
|
2000-06-27 03:31:59 +02:00
|
|
|
while (*s)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
asymbol *p = *s;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (p->section == input_section
|
|
|
|
&& (input_section->output_section->vma
|
|
|
|
+ input_section->output_offset
|
|
|
|
+ p->value) == address)
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
s++;
|
2000-06-27 03:31:59 +02:00
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If RELOC represents a relaxable instruction/reloc, change it into
|
|
|
|
the relaxed reloc, notify the linker that symbol addresses
|
|
|
|
have changed (bfd_perform_slip) and return how much the current
|
|
|
|
section has shrunk by.
|
|
|
|
|
|
|
|
FIXME: Much of this code has knowledge of the ordering of entries
|
|
|
|
in the howto table. This needs to be fixed. */
|
|
|
|
|
|
|
|
static int
|
2003-07-11 13:08:30 +02:00
|
|
|
h8300_reloc16_estimate (bfd *abfd, asection *input_section, arelent *reloc,
|
|
|
|
unsigned int shrink, struct bfd_link_info *link_info)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_vma value;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_vma dot;
|
|
|
|
bfd_vma gap;
|
|
|
|
static asection *last_input_section = NULL;
|
|
|
|
static arelent *last_reloc = NULL;
|
|
|
|
|
2000-11-10 21:55:44 +01:00
|
|
|
/* The address of the thing to be relocated will have moved back by
|
1999-05-03 09:29:11 +02:00
|
|
|
the size of the shrink - but we don't change reloc->address here,
|
|
|
|
since we need it to know where the relocation lives in the source
|
|
|
|
uncooked section. */
|
|
|
|
bfd_vma address = reloc->address - shrink;
|
|
|
|
|
|
|
|
if (input_section != last_input_section)
|
|
|
|
last_reloc = NULL;
|
|
|
|
|
|
|
|
/* Only examine the relocs which might be relaxable. */
|
|
|
|
switch (reloc->howto->type)
|
2000-11-10 21:55:44 +01:00
|
|
|
{
|
2004-01-17 00:50:20 +01:00
|
|
|
/* This is the 16-/24-bit absolute branch which could become an
|
|
|
|
8-bit pc-relative branch. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_JMP1:
|
|
|
|
case R_JMPL1:
|
|
|
|
/* Get the address of the target of this branch. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Get the address of the next instruction (not the reloc). */
|
|
|
|
dot = (input_section->output_section->vma
|
|
|
|
+ input_section->output_offset + address);
|
|
|
|
|
|
|
|
/* Adjust for R_JMP1 vs R_JMPL1. */
|
|
|
|
dot += (reloc->howto->type == R_JMP1 ? 1 : 2);
|
|
|
|
|
|
|
|
/* Compute the distance from this insn to the branch target. */
|
|
|
|
gap = value - dot;
|
2000-06-27 03:31:59 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* If the distance is within -128..+128 inclusive, then we can relax
|
|
|
|
this jump. +128 is valid since the target will move two bytes
|
|
|
|
closer if we do relax this branch. */
|
2002-11-11 06:05:22 +01:00
|
|
|
if ((int) gap >= -128 && (int) gap <= 128)
|
2000-11-10 21:55:44 +01:00
|
|
|
{
|
2002-11-15 12:18:49 +01:00
|
|
|
bfd_byte code;
|
|
|
|
|
|
|
|
if (!bfd_get_section_contents (abfd, input_section, & code,
|
|
|
|
reloc->address, 1))
|
|
|
|
break;
|
|
|
|
code = bfd_get_8 (abfd, & code);
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* It's possible we may be able to eliminate this branch entirely;
|
|
|
|
if the previous instruction is a branch around this instruction,
|
|
|
|
and there's no label at this instruction, then we can reverse
|
|
|
|
the condition on the previous branch and eliminate this jump.
|
|
|
|
|
|
|
|
original: new:
|
|
|
|
bCC lab1 bCC' lab2
|
|
|
|
jmp lab2
|
|
|
|
lab1: lab1:
|
2000-11-10 21:55:44 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
This saves 4 bytes instead of two, and should be relatively
|
2002-11-15 12:18:49 +01:00
|
|
|
common.
|
|
|
|
|
|
|
|
Only perform this optimisation for jumps (code 0x5a) not
|
|
|
|
subroutine calls, as otherwise it could transform:
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-12-19 02:58:53 +01:00
|
|
|
mov.w r0,r0
|
|
|
|
beq .L1
|
|
|
|
jsr @_bar
|
|
|
|
.L1: rts
|
|
|
|
_bar: rts
|
2002-11-15 12:18:49 +01:00
|
|
|
into:
|
2002-12-19 02:58:53 +01:00
|
|
|
mov.w r0,r0
|
|
|
|
bne _bar
|
|
|
|
rts
|
|
|
|
_bar: rts
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-11-15 12:18:49 +01:00
|
|
|
which changes the call (jsr) into a branch (bne). */
|
|
|
|
if (code == 0x5a
|
|
|
|
&& gap <= 126
|
1999-05-03 09:29:11 +02:00
|
|
|
&& last_reloc
|
|
|
|
&& last_reloc->howto->type == R_PCRBYTE)
|
|
|
|
{
|
|
|
|
bfd_vma last_value;
|
|
|
|
last_value = bfd_coff_reloc16_get_value (last_reloc, link_info,
|
|
|
|
input_section) + 1;
|
|
|
|
|
|
|
|
if (last_value == dot + 2
|
|
|
|
&& last_reloc->address + 1 == reloc->address
|
2000-06-27 03:31:59 +02:00
|
|
|
&& !h8300_symbol_address_p (abfd, input_section, dot - 2))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
reloc->howto = howto_table + 19;
|
|
|
|
last_reloc->howto = howto_table + 18;
|
|
|
|
last_reloc->sym_ptr_ptr = reloc->sym_ptr_ptr;
|
|
|
|
last_reloc->addend = reloc->addend;
|
|
|
|
shrink += 4;
|
|
|
|
bfd_perform_slip (abfd, 4, input_section, address);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the reloc type. */
|
2000-06-27 03:31:59 +02:00
|
|
|
reloc->howto = reloc->howto + 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* This shrinks this section by two bytes. */
|
|
|
|
shrink += 2;
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_perform_slip (abfd, 2, input_section, address);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* This is the 16-bit pc-relative branch which could become an 8-bit
|
1999-05-03 09:29:11 +02:00
|
|
|
pc-relative branch. */
|
|
|
|
case R_PCRWORD:
|
|
|
|
/* Get the address of the target of this branch, add one to the value
|
2002-12-19 02:58:53 +01:00
|
|
|
because the addend field in PCrel jumps is off by -1. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section) + 1;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Get the address of the next instruction if we were to relax. */
|
|
|
|
dot = input_section->output_section->vma +
|
|
|
|
input_section->output_offset + address;
|
2000-06-27 03:31:59 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Compute the distance from this insn to the branch target. */
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* If the distance is within -128..+128 inclusive, then we can relax
|
|
|
|
this jump. +128 is valid since the target will move two bytes
|
|
|
|
closer if we do relax this branch. */
|
2002-11-11 06:05:22 +01:00
|
|
|
if ((int) gap >= -128 && (int) gap <= 128)
|
2000-11-10 21:55:44 +01:00
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Change the reloc type. */
|
|
|
|
reloc->howto = howto_table + 15;
|
|
|
|
|
|
|
|
/* This shrinks this section by two bytes. */
|
|
|
|
shrink += 2;
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_perform_slip (abfd, 2, input_section, address);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* This is a 16-bit absolute address in a mov.b insn, which can
|
|
|
|
become an 8-bit absolute address if it's in the right range. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV16B1:
|
|
|
|
/* Get the address of the data referenced by this mov.b insn. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
2003-07-11 16:59:41 +02:00
|
|
|
value = bfd_h8300_pad_address (abfd, value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-07-11 16:59:41 +02:00
|
|
|
/* If the address is in the top 256 bytes of the address space
|
|
|
|
then we can relax this instruction. */
|
|
|
|
if (value >= 0xffffff00u)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Change the reloc type. */
|
|
|
|
reloc->howto = reloc->howto + 1;
|
|
|
|
|
|
|
|
/* This shrinks this section by two bytes. */
|
|
|
|
shrink += 2;
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_perform_slip (abfd, 2, input_section, address);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Similarly for a 24-bit absolute address in a mov.b. Note that
|
|
|
|
if we can't relax this into an 8-bit absolute, we'll fall through
|
|
|
|
and try to relax it into a 16-bit absolute. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV24B1:
|
|
|
|
/* Get the address of the data referenced by this mov.b insn. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
2003-07-11 16:59:41 +02:00
|
|
|
value = bfd_h8300_pad_address (abfd, value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-07-11 16:59:41 +02:00
|
|
|
if (value >= 0xffffff00u)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Change the reloc type. */
|
|
|
|
reloc->howto = reloc->howto + 1;
|
|
|
|
|
|
|
|
/* This shrinks this section by four bytes. */
|
|
|
|
shrink += 4;
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_perform_slip (abfd, 4, input_section, address);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Done with this reloc. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* FALLTHROUGH and try to turn the 24-/32-bit reloc into a 16-bit
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc. */
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* This is a 24-/32-bit absolute address in a mov insn, which can
|
|
|
|
become an 16-bit absolute address if it's in the right range. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOVL1:
|
|
|
|
/* Get the address of the data referenced by this mov insn. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
2003-07-11 16:59:41 +02:00
|
|
|
value = bfd_h8300_pad_address (abfd, value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-07-11 16:59:41 +02:00
|
|
|
/* If the address is a sign-extended 16-bit value then we can
|
|
|
|
relax this instruction. */
|
|
|
|
if (value <= 0x7fff || value >= 0xffff8000u)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Change the reloc type. */
|
|
|
|
reloc->howto = howto_table + 17;
|
|
|
|
|
|
|
|
/* This shrinks this section by two bytes. */
|
|
|
|
shrink += 2;
|
2000-06-27 03:31:59 +02:00
|
|
|
bfd_perform_slip (abfd, 2, input_section, address);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* No other reloc types represent relaxing opportunities. */
|
2000-06-27 03:31:59 +02:00
|
|
|
default:
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
last_reloc = reloc;
|
|
|
|
last_input_section = input_section;
|
|
|
|
return shrink;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle relocations for the H8/300, including relocs for relaxed
|
|
|
|
instructions.
|
|
|
|
|
|
|
|
FIXME: Not all relocations check for overflow! */
|
|
|
|
|
|
|
|
static void
|
2003-07-11 13:08:30 +02:00
|
|
|
h8300_reloc16_extra_cases (bfd *abfd, struct bfd_link_info *link_info,
|
|
|
|
struct bfd_link_order *link_order, arelent *reloc,
|
|
|
|
bfd_byte *data, unsigned int *src_ptr,
|
|
|
|
unsigned int *dst_ptr)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
unsigned int src_address = *src_ptr;
|
|
|
|
unsigned int dst_address = *dst_ptr;
|
|
|
|
asection *input_section = link_order->u.indirect.section;
|
|
|
|
bfd_vma value;
|
|
|
|
bfd_vma dot;
|
2000-06-27 03:31:59 +02:00
|
|
|
int gap, tmp;
|
2004-01-12 16:02:22 +01:00
|
|
|
unsigned char temp_code;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
switch (reloc->howto->type)
|
|
|
|
{
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Generic 8-bit pc-relative relocation. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_PCRBYTE:
|
|
|
|
/* Get the address of the target of this branch. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
2000-06-27 03:31:59 +02:00
|
|
|
+ dst_address
|
1999-05-03 09:29:11 +02:00
|
|
|
+ link_order->u.indirect.section->output_section->vma);
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Sanity check. */
|
|
|
|
if (gap < -128 || gap > 126)
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Everything looks OK. Apply the relocation and update the
|
|
|
|
src/dst address appropriately. */
|
|
|
|
bfd_put_8 (abfd, gap, data + dst_address);
|
|
|
|
dst_address++;
|
|
|
|
src_address++;
|
|
|
|
|
|
|
|
/* All done. */
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Generic 16-bit pc-relative relocation. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_PCRWORD:
|
|
|
|
/* Get the address of the target of this branch. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Get the address of the instruction (not the reloc). */
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
2000-11-10 21:55:44 +01:00
|
|
|
+ dst_address
|
1999-05-03 09:29:11 +02:00
|
|
|
+ link_order->u.indirect.section->output_section->vma + 1);
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Sanity check. */
|
|
|
|
if (gap > 32766 || gap < -32768)
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Everything looks OK. Apply the relocation and update the
|
|
|
|
src/dst address appropriately. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_put_16 (abfd, (bfd_vma) gap, data + dst_address);
|
1999-05-03 09:29:11 +02:00
|
|
|
dst_address += 2;
|
|
|
|
src_address += 2;
|
|
|
|
|
|
|
|
/* All done. */
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Generic 8-bit absolute relocation. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_RELBYTE:
|
|
|
|
/* Get the address of the object referenced by this insn. */
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
2003-07-11 16:59:41 +02:00
|
|
|
bfd_put_8 (abfd, value & 0xff, data + dst_address);
|
|
|
|
dst_address += 1;
|
|
|
|
src_address += 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* All done. */
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Various simple 16-bit absolute relocations. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV16B1:
|
|
|
|
case R_JMP1:
|
|
|
|
case R_RELWORD:
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_put_16 (abfd, value, data + dst_address);
|
|
|
|
dst_address += 2;
|
|
|
|
src_address += 2;
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Various simple 24-/32-bit absolute relocations. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV24B1:
|
|
|
|
case R_MOVL1:
|
|
|
|
case R_RELLONG:
|
|
|
|
/* Get the address of the target of this branch. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_put_32 (abfd, value, data + dst_address);
|
|
|
|
dst_address += 4;
|
|
|
|
src_address += 4;
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Another 24-/32-bit absolute relocation. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_JMPL1:
|
|
|
|
/* Get the address of the target of this branch. */
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
|
|
|
value = ((value & 0x00ffffff)
|
|
|
|
| (bfd_get_32 (abfd, data + src_address) & 0xff000000));
|
|
|
|
bfd_put_32 (abfd, value, data + dst_address);
|
|
|
|
dst_address += 4;
|
|
|
|
src_address += 4;
|
|
|
|
break;
|
|
|
|
|
2004-01-19 18:02:45 +01:00
|
|
|
/* This is a 24-/32-bit absolute address in one of the following
|
|
|
|
instructions:
|
|
|
|
|
|
|
|
"band", "bclr", "biand", "bild", "bior", "bist", "bixor",
|
2004-02-09 13:15:57 +01:00
|
|
|
"bld", "bnot", "bor", "bset", "bst", "btst", "bxor", "ldc.w",
|
|
|
|
"stc.w" and "mov.[bwl]"
|
2004-01-19 18:02:45 +01:00
|
|
|
|
|
|
|
We may relax this into an 16-bit absolute address if it's in
|
|
|
|
the right range. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOVL2:
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
2003-07-11 16:59:41 +02:00
|
|
|
value = bfd_h8300_pad_address (abfd, value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Sanity check. */
|
2003-07-11 16:59:41 +02:00
|
|
|
if (value <= 0x7fff || value >= 0xffff8000u)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Insert the 16-bit value into the proper location. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_put_16 (abfd, value, data + dst_address);
|
|
|
|
|
2004-01-19 18:02:45 +01:00
|
|
|
/* Fix the opcode. For all the instructions that belong to
|
|
|
|
this relaxation, we simply need to turn off bit 0x20 in
|
|
|
|
the previous byte. */
|
2002-11-11 06:05:22 +01:00
|
|
|
data[dst_address - 1] &= ~0x20;
|
1999-05-03 09:29:11 +02:00
|
|
|
dst_address += 2;
|
|
|
|
src_address += 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
2002-11-11 06:05:22 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* A 16-bit absolute branch that is now an 8-bit pc-relative branch. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_JMP2:
|
|
|
|
/* Get the address of the target of this branch. */
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
|
|
|
/* Get the address of the next instruction. */
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
1999-05-03 09:29:11 +02:00
|
|
|
+ dst_address
|
|
|
|
+ link_order->u.indirect.section->output_section->vma + 1);
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Sanity check. */
|
|
|
|
if (gap < -128 || gap > 126)
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now fix the instruction itself. */
|
|
|
|
switch (data[dst_address - 1])
|
|
|
|
{
|
|
|
|
case 0x5e:
|
|
|
|
/* jsr -> bsr */
|
|
|
|
bfd_put_8 (abfd, 0x55, data + dst_address - 1);
|
|
|
|
break;
|
|
|
|
case 0x5a:
|
2004-01-19 18:02:45 +01:00
|
|
|
/* jmp -> bra */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_put_8 (abfd, 0x40, data + dst_address - 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Write out the 8-bit value. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_put_8 (abfd, gap, data + dst_address);
|
|
|
|
|
|
|
|
dst_address += 1;
|
|
|
|
src_address += 3;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* A 16-bit pc-relative branch that is now an 8-bit pc-relative branch. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_PCRWORD_B:
|
|
|
|
/* Get the address of the target of this branch. */
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
|
|
|
/* Get the address of the instruction (not the reloc). */
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
1999-05-03 09:29:11 +02:00
|
|
|
+ dst_address
|
|
|
|
+ link_order->u.indirect.section->output_section->vma - 1);
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Sanity check. */
|
|
|
|
if (gap < -128 || gap > 126)
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now fix the instruction. */
|
|
|
|
switch (data[dst_address - 2])
|
|
|
|
{
|
|
|
|
case 0x58:
|
|
|
|
/* bCC:16 -> bCC:8 */
|
2004-01-19 18:02:45 +01:00
|
|
|
/* Get the second byte of the original insn, which contains
|
|
|
|
the condition code. */
|
1999-05-03 09:29:11 +02:00
|
|
|
tmp = data[dst_address - 1];
|
2004-01-19 18:02:45 +01:00
|
|
|
|
|
|
|
/* Compute the fisrt byte of the relaxed instruction. The
|
|
|
|
original sequence 0x58 0xX0 is relaxed to 0x4X, where X
|
|
|
|
represents the condition code. */
|
1999-05-03 09:29:11 +02:00
|
|
|
tmp &= 0xf0;
|
|
|
|
tmp >>= 4;
|
|
|
|
tmp |= 0x40;
|
|
|
|
|
|
|
|
/* Write it. */
|
|
|
|
bfd_put_8 (abfd, tmp, data + dst_address - 2);
|
|
|
|
break;
|
2000-11-07 06:04:04 +01:00
|
|
|
|
2000-04-03 08:55:06 +02:00
|
|
|
case 0x5c:
|
|
|
|
/* bsr:16 -> bsr:8 */
|
|
|
|
bfd_put_8 (abfd, 0x55, data + dst_address - 2);
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2002-11-11 06:05:22 +01:00
|
|
|
/* Output the target. */
|
|
|
|
bfd_put_8 (abfd, gap, data + dst_address - 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* We don't advance dst_address -- the 8-bit reloc is applied at
|
2002-11-11 06:05:22 +01:00
|
|
|
dst_address - 1, so the next insn should begin at dst_address. */
|
|
|
|
src_address += 2;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-11 06:05:22 +01:00
|
|
|
break;
|
2000-11-10 21:55:44 +01:00
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* Similarly for a 24-bit absolute that is now 8 bits. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_JMPL2:
|
|
|
|
/* Get the address of the target of this branch. */
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
|
|
|
/* Get the address of the instruction (not the reloc). */
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
1999-05-03 09:29:11 +02:00
|
|
|
+ dst_address
|
|
|
|
+ link_order->u.indirect.section->output_section->vma + 2);
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Fix the instruction. */
|
|
|
|
switch (data[src_address])
|
|
|
|
{
|
|
|
|
case 0x5e:
|
|
|
|
/* jsr -> bsr */
|
|
|
|
bfd_put_8 (abfd, 0x55, data + dst_address);
|
|
|
|
break;
|
|
|
|
case 0x5a:
|
|
|
|
/* jmp ->bra */
|
|
|
|
bfd_put_8 (abfd, 0x40, data + dst_address);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_put_8 (abfd, gap, data + dst_address + 1);
|
|
|
|
dst_address += 2;
|
|
|
|
src_address += 4;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a 16-bit absolute address in one of the following
|
|
|
|
instructions:
|
|
|
|
|
|
|
|
"band", "bclr", "biand", "bild", "bior", "bist", "bixor",
|
|
|
|
"bld", "bnot", "bor", "bset", "bst", "btst", "bxor", and
|
|
|
|
"mov.b"
|
|
|
|
|
|
|
|
We may relax this into an 8-bit absolute address if it's in
|
|
|
|
the right range. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV16B2:
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
2004-01-17 00:35:49 +01:00
|
|
|
/* All instructions with R_H8_DIR16B2 start with 0x6a. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (data[dst_address - 2] != 0x6a)
|
|
|
|
abort ();
|
|
|
|
|
2004-01-12 16:02:22 +01:00
|
|
|
temp_code = data[src_address - 1];
|
2004-01-17 00:35:49 +01:00
|
|
|
|
|
|
|
/* If this is a mov.b instruction, clear the lower nibble, which
|
|
|
|
contains the source/destination register number. */
|
2004-01-12 16:02:22 +01:00
|
|
|
if ((temp_code & 0x10) != 0x10)
|
|
|
|
temp_code &= 0xf0;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Fix up the opcode. */
|
2004-01-12 16:02:22 +01:00
|
|
|
switch (temp_code)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
case 0x00:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is mov.b @aa:16,Rd. */
|
2000-06-27 03:31:59 +02:00
|
|
|
data[dst_address - 2] = (data[src_address - 1] & 0xf) | 0x20;
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
case 0x80:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is mov.b Rs,@aa:16. */
|
2000-06-27 03:31:59 +02:00
|
|
|
data[dst_address - 2] = (data[src_address - 1] & 0xf) | 0x30;
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
2004-01-12 16:02:22 +01:00
|
|
|
case 0x18:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a bit-maniputation instruction that stores one
|
|
|
|
bit into memory, one of "bclr", "bist", "bnot", "bset",
|
|
|
|
and "bst". */
|
2004-01-12 16:02:22 +01:00
|
|
|
data[dst_address - 2] = 0x7f;
|
|
|
|
break;
|
|
|
|
case 0x10:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a bit-maniputation instruction that loads one bit
|
|
|
|
from memory, one of "band", "biand", "bild", "bior",
|
|
|
|
"bixor", "bld", "bor", "btst", and "bxor". */
|
2004-01-12 16:02:22 +01:00
|
|
|
data[dst_address - 2] = 0x7e;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_put_8 (abfd, value & 0xff, data + dst_address - 1);
|
|
|
|
src_address += 2;
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a 24-bit absolute address in one of the following
|
|
|
|
instructions:
|
|
|
|
|
|
|
|
"band", "bclr", "biand", "bild", "bior", "bist", "bixor",
|
|
|
|
"bld", "bnot", "bor", "bset", "bst", "btst", "bxor", and
|
|
|
|
"mov.b"
|
|
|
|
|
|
|
|
We may relax this into an 8-bit absolute address if it's in
|
|
|
|
the right range. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case R_MOV24B2:
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
|
2004-01-17 00:35:49 +01:00
|
|
|
/* All instructions with R_MOV24B2 start with 0x6a. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (data[dst_address - 2] != 0x6a)
|
|
|
|
abort ();
|
|
|
|
|
2004-01-12 16:02:22 +01:00
|
|
|
temp_code = data[src_address - 1];
|
2004-01-17 00:35:49 +01:00
|
|
|
|
|
|
|
/* If this is a mov.b instruction, clear the lower nibble, which
|
|
|
|
contains the source/destination register number. */
|
2004-01-12 16:02:22 +01:00
|
|
|
if ((temp_code & 0x30) != 0x30)
|
|
|
|
temp_code &= 0xf0;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Fix up the opcode. */
|
2004-01-12 16:02:22 +01:00
|
|
|
switch (temp_code)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
case 0x20:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is mov.b @aa:24/32,Rd. */
|
2000-06-27 03:31:59 +02:00
|
|
|
data[dst_address - 2] = (data[src_address - 1] & 0xf) | 0x20;
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
case 0xa0:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is mov.b Rs,@aa:24/32. */
|
2000-06-27 03:31:59 +02:00
|
|
|
data[dst_address - 2] = (data[src_address - 1] & 0xf) | 0x30;
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
2004-01-12 16:02:22 +01:00
|
|
|
case 0x38:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a bit-maniputation instruction that stores one
|
|
|
|
bit into memory, one of "bclr", "bist", "bnot", "bset",
|
|
|
|
and "bst". */
|
2004-01-12 16:02:22 +01:00
|
|
|
data[dst_address - 2] = 0x7f;
|
|
|
|
break;
|
|
|
|
case 0x30:
|
2004-01-17 00:35:49 +01:00
|
|
|
/* This is a bit-maniputation instruction that loads one bit
|
|
|
|
from memory, one of "band", "biand", "bild", "bior",
|
|
|
|
"bixor", "bld", "bor", "btst", and "bxor". */
|
2004-01-12 16:02:22 +01:00
|
|
|
data[dst_address - 2] = 0x7e;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_put_8 (abfd, value & 0xff, data + dst_address - 1);
|
|
|
|
src_address += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_BCC_INV:
|
|
|
|
/* Get the address of the target of this branch. */
|
2000-06-27 03:31:59 +02:00
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-12-27 04:06:27 +01:00
|
|
|
dot = (input_section->output_offset
|
2000-06-27 03:31:59 +02:00
|
|
|
+ dst_address
|
1999-05-03 09:29:11 +02:00
|
|
|
+ link_order->u.indirect.section->output_section->vma) + 1;
|
|
|
|
|
|
|
|
gap = value - dot;
|
|
|
|
|
|
|
|
/* Sanity check. */
|
|
|
|
if (gap < -128 || gap > 126)
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Everything looks OK. Fix the condition in the instruction, apply
|
|
|
|
the relocation, and update the src/dst address appropriately. */
|
|
|
|
|
|
|
|
bfd_put_8 (abfd, bfd_get_8 (abfd, data + dst_address - 1) ^ 1,
|
|
|
|
data + dst_address - 1);
|
|
|
|
bfd_put_8 (abfd, gap, data + dst_address);
|
|
|
|
dst_address++;
|
|
|
|
src_address++;
|
|
|
|
|
|
|
|
/* All done. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_JMP_DEL:
|
|
|
|
src_address += 4;
|
|
|
|
break;
|
|
|
|
|
2004-01-17 00:50:20 +01:00
|
|
|
/* An 8-bit memory indirect instruction (jmp/jsr).
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
There's several things that need to be done to handle
|
|
|
|
this relocation.
|
|
|
|
|
|
|
|
If this is a reloc against the absolute symbol, then
|
|
|
|
we should handle it just R_RELBYTE. Likewise if it's
|
|
|
|
for a symbol with a value ge 0 and le 0xff.
|
|
|
|
|
|
|
|
Otherwise it's a jump/call through the function vector,
|
|
|
|
and the linker is expected to set up the function vector
|
|
|
|
and put the right value into the jump/call instruction. */
|
|
|
|
case R_MEM_INDIRECT:
|
|
|
|
{
|
|
|
|
/* We need to find the symbol so we can determine it's
|
|
|
|
address in the function vector table. */
|
|
|
|
asymbol *symbol;
|
|
|
|
const char *name;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
struct funcvec_hash_table *ftab;
|
1999-05-03 09:29:11 +02:00
|
|
|
struct funcvec_hash_entry *h;
|
2002-12-19 02:58:53 +01:00
|
|
|
struct h8300_coff_link_hash_table *htab;
|
|
|
|
asection *vectors_sec;
|
|
|
|
|
2008-02-15 04:35:53 +01:00
|
|
|
if (link_info->output_bfd->xvec != abfd->xvec)
|
2002-12-19 02:58:53 +01:00
|
|
|
{
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("cannot handle R_MEM_INDIRECT reloc when using %s output"),
|
2008-02-15 04:35:53 +01:00
|
|
|
link_info->output_bfd->xvec->name);
|
2002-12-19 02:58:53 +01:00
|
|
|
|
|
|
|
/* What else can we do? This function doesn't allow return
|
|
|
|
of an error, and we don't want to call abort as that
|
|
|
|
indicates an internal error. */
|
|
|
|
#ifndef EXIT_FAILURE
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#endif
|
|
|
|
xexit (EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
htab = h8300_coff_hash_table (link_info);
|
|
|
|
vectors_sec = htab->vectors_sec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* First see if this is a reloc against the absolute symbol
|
|
|
|
or against a symbol with a nonnegative value <= 0xff. */
|
|
|
|
symbol = *(reloc->sym_ptr_ptr);
|
|
|
|
value = bfd_coff_reloc16_get_value (reloc, link_info, input_section);
|
|
|
|
if (symbol == bfd_abs_section_ptr->symbol
|
1999-07-12 12:30:21 +02:00
|
|
|
|| value <= 0xff)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* This should be handled in a manner very similar to
|
|
|
|
R_RELBYTES. If the value is in range, then just slam
|
|
|
|
the value into the right location. Else trigger a
|
|
|
|
reloc overflow callback. */
|
1999-07-12 12:30:21 +02:00
|
|
|
if (value <= 0xff)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
bfd_put_8 (abfd, value, data + dst_address);
|
|
|
|
dst_address += 1;
|
|
|
|
src_address += 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (! ((*link_info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(link_info, NULL,
|
|
|
|
bfd_asymbol_name (*reloc->sym_ptr_ptr),
|
1999-05-03 09:29:11 +02:00
|
|
|
reloc->howto->name, reloc->addend, input_section->owner,
|
|
|
|
input_section, reloc->address)))
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is a jump/call through a function vector, and we're
|
2000-11-10 21:55:44 +01:00
|
|
|
expected to create the function vector ourselves.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
First look up this symbol in the linker hash table -- we need
|
|
|
|
the derived linker symbol which holds this symbol's index
|
|
|
|
in the function vector. */
|
|
|
|
name = symbol->name;
|
|
|
|
if (symbol->flags & BSF_LOCAL)
|
|
|
|
{
|
2005-02-24 14:34:38 +01:00
|
|
|
char *new_name = bfd_malloc ((bfd_size_type) strlen (name) + 10);
|
2003-10-17 12:23:33 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (new_name == NULL)
|
|
|
|
abort ();
|
|
|
|
|
2005-02-24 14:34:38 +01:00
|
|
|
sprintf (new_name, "%s_%08x", name, symbol->section->id);
|
1999-05-03 09:29:11 +02:00
|
|
|
name = new_name;
|
|
|
|
}
|
|
|
|
|
2002-12-19 02:58:53 +01:00
|
|
|
ftab = htab->funcvec_hash_table;
|
2002-11-30 09:39:46 +01:00
|
|
|
h = funcvec_hash_lookup (ftab, name, FALSE, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* This shouldn't ever happen. If it does that means we've got
|
|
|
|
data corruption of some kind. Aborting seems like a reasonable
|
2002-12-19 02:58:53 +01:00
|
|
|
thing to do here. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (h == NULL || vectors_sec == NULL)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Place the address of the function vector entry into the
|
|
|
|
reloc's address. */
|
|
|
|
bfd_put_8 (abfd,
|
|
|
|
vectors_sec->output_offset + h->offset,
|
|
|
|
data + dst_address);
|
|
|
|
|
|
|
|
dst_address++;
|
|
|
|
src_address++;
|
|
|
|
|
|
|
|
/* Now create an entry in the function vector itself. */
|
2003-10-17 12:23:33 +02:00
|
|
|
switch (bfd_get_mach (input_section->owner))
|
|
|
|
{
|
|
|
|
case bfd_mach_h8300:
|
|
|
|
case bfd_mach_h8300hn:
|
|
|
|
case bfd_mach_h8300sn:
|
|
|
|
bfd_put_16 (abfd,
|
|
|
|
bfd_coff_reloc16_get_value (reloc,
|
|
|
|
link_info,
|
|
|
|
input_section),
|
|
|
|
vectors_sec->contents + h->offset);
|
|
|
|
break;
|
|
|
|
case bfd_mach_h8300h:
|
|
|
|
case bfd_mach_h8300s:
|
|
|
|
bfd_put_32 (abfd,
|
|
|
|
bfd_coff_reloc16_get_value (reloc,
|
|
|
|
link_info,
|
|
|
|
input_section),
|
|
|
|
vectors_sec->contents + h->offset);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Gross. We've already written the contents of the vector section
|
|
|
|
before we get here... So we write it again with the new data. */
|
|
|
|
bfd_set_section_contents (vectors_sec->output_section->owner,
|
|
|
|
vectors_sec->output_section,
|
|
|
|
vectors_sec->contents,
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
(file_ptr) vectors_sec->output_offset,
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
vectors_sec->size);
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
*src_ptr = src_address;
|
|
|
|
*dst_ptr = dst_address;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Routine for the h8300 linker.
|
|
|
|
|
|
|
|
This routine is necessary to handle the special R_MEM_INDIRECT
|
|
|
|
relocs on the h8300. It's responsible for generating a vectors
|
|
|
|
section and attaching it to an input bfd as well as sizing
|
|
|
|
the vectors section. It also creates our vectors hash table.
|
|
|
|
|
|
|
|
It uses the generic linker routines to actually add the symbols.
|
|
|
|
from this BFD to the bfd linker hash table. It may add a few
|
|
|
|
selected static symbols to the bfd linker hash table. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2003-07-11 13:08:30 +02:00
|
|
|
h8300_bfd_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
asection *sec;
|
|
|
|
struct funcvec_hash_table *funcvec_hash_table;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt;
|
2002-12-19 02:58:53 +01:00
|
|
|
struct h8300_coff_link_hash_table *htab;
|
|
|
|
|
|
|
|
/* Add the symbols using the generic code. */
|
|
|
|
_bfd_generic_link_add_symbols (abfd, info);
|
|
|
|
|
2008-02-15 04:35:53 +01:00
|
|
|
if (info->output_bfd->xvec != abfd->xvec)
|
2002-12-19 02:58:53 +01:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
htab = h8300_coff_hash_table (info);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* If we haven't created a vectors section, do so now. */
|
2002-12-19 02:58:53 +01:00
|
|
|
if (!htab->vectors_sec)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
/* Make sure the appropriate flags are set, including SEC_IN_MEMORY. */
|
|
|
|
flags = (SEC_ALLOC | SEC_LOAD
|
|
|
|
| SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_READONLY);
|
2006-06-01 05:45:58 +02:00
|
|
|
htab->vectors_sec = bfd_make_section_with_flags (abfd, ".vectors",
|
|
|
|
flags);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* If the section wasn't created, or we couldn't set the flags,
|
2002-12-19 02:58:53 +01:00
|
|
|
quit quickly now, rather than dying a painful death later. */
|
2006-06-01 05:45:58 +02:00
|
|
|
if (!htab->vectors_sec)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Also create the vector hash table. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct funcvec_hash_table);
|
|
|
|
funcvec_hash_table = (struct funcvec_hash_table *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (!funcvec_hash_table)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* And initialize the funcvec hash table. */
|
|
|
|
if (!funcvec_hash_table_init (funcvec_hash_table, abfd,
|
2006-03-16 13:20:16 +01:00
|
|
|
funcvec_hash_newfunc,
|
|
|
|
sizeof (struct funcvec_hash_entry)))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
bfd_release (abfd, funcvec_hash_table);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store away a pointer to the funcvec hash table. */
|
2002-12-19 02:58:53 +01:00
|
|
|
htab->funcvec_hash_table = funcvec_hash_table;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Load up the function vector hash table. */
|
2002-12-19 02:58:53 +01:00
|
|
|
funcvec_hash_table = htab->funcvec_hash_table;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Now scan the relocs for all the sections in this bfd; create
|
|
|
|
additional space in the .vectors section as needed. */
|
|
|
|
for (sec = abfd->sections; sec; sec = sec->next)
|
|
|
|
{
|
|
|
|
long reloc_size, reloc_count, i;
|
|
|
|
asymbol **symbols;
|
|
|
|
arelent **relocs;
|
|
|
|
|
|
|
|
/* Suck in the relocs, symbols & canonicalize them. */
|
|
|
|
reloc_size = bfd_get_reloc_upper_bound (abfd, sec);
|
|
|
|
if (reloc_size <= 0)
|
|
|
|
continue;
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
relocs = (arelent **) bfd_malloc ((bfd_size_type) reloc_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (!relocs)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* The symbols should have been read in by _bfd_generic link_add_symbols
|
|
|
|
call abovec, so we can cheat and use the pointer to them that was
|
|
|
|
saved in the above call. */
|
|
|
|
symbols = _bfd_generic_link_get_symbols(abfd);
|
|
|
|
reloc_count = bfd_canonicalize_reloc (abfd, sec, relocs, symbols);
|
|
|
|
if (reloc_count <= 0)
|
|
|
|
{
|
|
|
|
free (relocs);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now walk through all the relocations in this section. */
|
|
|
|
for (i = 0; i < reloc_count; i++)
|
|
|
|
{
|
|
|
|
arelent *reloc = relocs[i];
|
|
|
|
asymbol *symbol = *(reloc->sym_ptr_ptr);
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* We've got an indirect reloc. See if we need to add it
|
|
|
|
to the function vector table. At this point, we have
|
|
|
|
to add a new entry for each unique symbol referenced
|
|
|
|
by an R_MEM_INDIRECT relocation except for a reloc
|
|
|
|
against the absolute section symbol. */
|
|
|
|
if (reloc->howto->type == R_MEM_INDIRECT
|
|
|
|
&& symbol != bfd_abs_section_ptr->symbol)
|
|
|
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
struct funcvec_hash_table *ftab;
|
1999-05-03 09:29:11 +02:00
|
|
|
struct funcvec_hash_entry *h;
|
|
|
|
|
|
|
|
name = symbol->name;
|
|
|
|
if (symbol->flags & BSF_LOCAL)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
char *new_name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-02-24 14:34:38 +01:00
|
|
|
new_name = bfd_malloc ((bfd_size_type) strlen (name) + 10);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (new_name == NULL)
|
|
|
|
abort ();
|
|
|
|
|
2005-02-24 14:34:38 +01:00
|
|
|
sprintf (new_name, "%s_%08x", name, symbol->section->id);
|
1999-05-03 09:29:11 +02:00
|
|
|
name = new_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look this symbol up in the function vector hash table. */
|
2002-12-19 02:58:53 +01:00
|
|
|
ftab = htab->funcvec_hash_table;
|
2002-11-30 09:39:46 +01:00
|
|
|
h = funcvec_hash_lookup (ftab, name, FALSE, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* If this symbol isn't already in the hash table, add
|
|
|
|
it and bump up the size of the hash table. */
|
|
|
|
if (h == NULL)
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
h = funcvec_hash_lookup (ftab, name, TRUE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (h == NULL)
|
|
|
|
{
|
|
|
|
free (relocs);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Bump the size of the vectors section. Each vector
|
|
|
|
takes 2 bytes on the h8300 and 4 bytes on the h8300h. */
|
2003-10-17 12:23:33 +02:00
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
{
|
|
|
|
case bfd_mach_h8300:
|
|
|
|
case bfd_mach_h8300hn:
|
|
|
|
case bfd_mach_h8300sn:
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
htab->vectors_sec->size += 2;
|
2003-10-17 12:23:33 +02:00
|
|
|
break;
|
|
|
|
case bfd_mach_h8300h:
|
|
|
|
case bfd_mach_h8300s:
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
htab->vectors_sec->size += 4;
|
2003-10-17 12:23:33 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We're done with the relocations, release them. */
|
|
|
|
free (relocs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now actually allocate some space for the function vector. It's
|
|
|
|
wasteful to do this more than once, but this is easier. */
|
2002-12-19 02:58:53 +01:00
|
|
|
sec = htab->vectors_sec;
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
if (sec->size != 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Free the old contents. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
if (sec->contents)
|
|
|
|
free (sec->contents);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Allocate new contents. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
sec->contents = bfd_malloc (sec->size);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define coff_reloc16_extra_cases h8300_reloc16_extra_cases
|
|
|
|
#define coff_reloc16_estimate h8300_reloc16_estimate
|
|
|
|
#define coff_bfd_link_add_symbols h8300_bfd_link_add_symbols
|
|
|
|
#define coff_bfd_link_hash_table_create h8300_coff_link_hash_table_create
|
|
|
|
|
|
|
|
#define COFF_LONG_FILENAMES
|
2008-07-18 13:30:22 +02:00
|
|
|
|
|
|
|
#ifndef bfd_pe_print_pdata
|
|
|
|
#define bfd_pe_print_pdata NULL
|
|
|
|
#endif
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "coffcode.h"
|
|
|
|
|
|
|
|
#undef coff_bfd_get_relocated_section_contents
|
|
|
|
#undef coff_bfd_relax_section
|
|
|
|
#define coff_bfd_get_relocated_section_contents \
|
|
|
|
bfd_coff_reloc16_get_relocated_section_contents
|
|
|
|
#define coff_bfd_relax_section bfd_coff_reloc16_relax_section
|
|
|
|
|
2003-06-04 12:47:33 +02:00
|
|
|
CREATE_BIG_COFF_TARGET_VEC (h8300coff_vec, "coff-h8300", BFD_IS_RELAXABLE, 0, '_', NULL, COFF_SWAP_TABLE)
|