1999-05-03 09:29:11 +02:00
|
|
|
|
/* BFD back-end for PowerPC Microsoft Portable Executable files.
|
2001-03-08 22:04:02 +01:00
|
|
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2011-01-14 13:35:56 +01:00
|
|
|
|
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
Original version pieced together by Kim Knuttila (krk@cygnus.com)
|
|
|
|
|
|
|
|
|
|
There is nothing new under the sun. This file draws a lot on other
|
2000-11-14 20:23:49 +01:00
|
|
|
|
coff files, in particular, those for the rs/6000, alpha, mips, and
|
1999-05-03 09:29:11 +02:00
|
|
|
|
intel backends, and the PE work for the arm.
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +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
|
2003-02-20 19:59:32 +01:00
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +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
|
|
|
|
|
2003-02-20 19:59:32 +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
|
2005-05-04 17:53:43 +02:00
|
|
|
|
Foundation, 51 Franklin Street - Fifth Floor,
|
2005-05-04 09:19:45 +02:00
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Current State:
|
|
|
|
|
- objdump works
|
|
|
|
|
- relocs generated by gas
|
|
|
|
|
- ld will link files, but they do not run.
|
2000-11-14 20:23:49 +01:00
|
|
|
|
- dlltool will not produce correct output in some .reloc cases, and will
|
2003-02-20 19:59:32 +01:00
|
|
|
|
not produce the right glue code for dll function calls. */
|
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 "coff/powerpc.h"
|
|
|
|
|
#include "coff/internal.h"
|
|
|
|
|
|
|
|
|
|
#include "coff/pe.h"
|
|
|
|
|
|
|
|
|
|
#ifdef BADMAG
|
|
|
|
|
#undef BADMAG
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define BADMAG(x) PPCBADMAG(x)
|
|
|
|
|
|
|
|
|
|
#include "libcoff.h"
|
|
|
|
|
|
|
|
|
|
/* This file is compiled more than once, but we only compile the
|
|
|
|
|
final_link routine once. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
extern bfd_boolean ppc_bfd_coff_final_link
|
1999-05-03 09:29:11 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
extern void dump_toc PARAMS ((PTR));
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* The toc is a set of bfd_vma fields. We use the fact that valid
|
|
|
|
|
addresses are even (i.e. the bit representing "1" is off) to allow
|
|
|
|
|
us to encode a little extra information in the field
|
|
|
|
|
- Unallocated addresses are initialized to 1.
|
|
|
|
|
- Allocated addresses are even numbers.
|
|
|
|
|
The first time we actually write a reference to the toc in the bfd,
|
|
|
|
|
we want to record that fact in a fixup file (if it is asked for), so
|
|
|
|
|
we keep track of whether or not an address has been written by marking
|
|
|
|
|
the low order bit with a "1" upon writing. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define SET_UNALLOCATED(x) ((x) = 1)
|
|
|
|
|
#define IS_UNALLOCATED(x) ((x) == 1)
|
|
|
|
|
|
|
|
|
|
#define IS_WRITTEN(x) ((x) & 1)
|
|
|
|
|
#define MARK_AS_WRITTEN(x) ((x) |= 1)
|
|
|
|
|
#define MAKE_ADDR_AGAIN(x) ((x) &= ~1)
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Turn on this check if you suspect something amiss in the hash tables. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef DEBUG_HASH
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Need a 7 char string for an eye catcher. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define EYE "krkjunk"
|
|
|
|
|
|
|
|
|
|
#define HASH_CHECK_DCL char eye_catcher[8];
|
|
|
|
|
#define HASH_CHECK_INIT(ret) strcpy(ret->eye_catcher, EYE)
|
|
|
|
|
#define HASH_CHECK(addr) \
|
|
|
|
|
if (strcmp(addr->eye_catcher, EYE) != 0) \
|
|
|
|
|
{ \
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (stderr,\
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_("File %s, line %d, Hash check failure, bad eye %8s\n"), \
|
|
|
|
|
__FILE__, __LINE__, addr->eye_catcher); \
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort (); \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define HASH_CHECK_DCL
|
|
|
|
|
#define HASH_CHECK_INIT(ret)
|
|
|
|
|
#define HASH_CHECK(addr)
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In order not to add an int to every hash table item for every coff
|
2003-02-20 19:59:32 +01:00
|
|
|
|
linker, we define our own hash table, derived from the coff one. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* PE linker hash table entries. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
struct ppc_coff_link_hash_entry
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
struct coff_link_hash_entry root; /* First entry, as required. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* As we wonder around the relocs, we'll keep the assigned toc_offset
|
2003-02-20 19:59:32 +01:00
|
|
|
|
here. */
|
|
|
|
|
bfd_vma toc_offset; /* Our addition, as required. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int symbol_is_glue;
|
|
|
|
|
unsigned long int glue_insn;
|
|
|
|
|
|
|
|
|
|
HASH_CHECK_DCL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* PE linker hash table. */
|
|
|
|
|
|
|
|
|
|
struct ppc_coff_link_hash_table
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
struct coff_link_hash_table root; /* First entry, as required. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *ppc_coff_link_hash_newfunc
|
|
|
|
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
|
|
|
|
|
const char *));
|
|
|
|
|
static struct bfd_link_hash_table *ppc_coff_link_hash_table_create
|
|
|
|
|
PARAMS ((bfd *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_ppc_relocate_section
|
1999-05-03 09:29:11 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
|
|
|
|
|
struct internal_reloc *, struct internal_syment *, asection **));
|
|
|
|
|
static reloc_howto_type *coff_ppc_rtype_to_howto
|
|
|
|
|
PARAMS ((bfd *, asection *, struct internal_reloc *,
|
|
|
|
|
struct coff_link_hash_entry *, struct internal_syment *,
|
|
|
|
|
bfd_vma *));
|
|
|
|
|
|
|
|
|
|
/* Routine to create an entry in the link hash table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
|
|
|
|
ppc_coff_link_hash_newfunc (entry, table, string)
|
|
|
|
|
struct bfd_hash_entry *entry;
|
|
|
|
|
struct bfd_hash_table *table;
|
|
|
|
|
const char *string;
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
struct ppc_coff_link_hash_entry *ret =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(struct ppc_coff_link_hash_entry *) entry;
|
|
|
|
|
|
|
|
|
|
/* Allocate the structure if it has not already been allocated by a
|
|
|
|
|
subclass. */
|
|
|
|
|
if (ret == (struct ppc_coff_link_hash_entry *) NULL)
|
|
|
|
|
ret = (struct ppc_coff_link_hash_entry *)
|
2000-11-14 20:23:49 +01:00
|
|
|
|
bfd_hash_allocate (table,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sizeof (struct ppc_coff_link_hash_entry));
|
|
|
|
|
|
|
|
|
|
if (ret == (struct ppc_coff_link_hash_entry *) NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* Call the allocation method of the superclass. */
|
|
|
|
|
ret = ((struct ppc_coff_link_hash_entry *)
|
2000-11-14 20:23:49 +01:00
|
|
|
|
_bfd_coff_link_hash_newfunc ((struct bfd_hash_entry *) ret,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
table, string));
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
{
|
|
|
|
|
/* Initialize the local fields. */
|
2003-02-20 19:59:32 +01:00
|
|
|
|
SET_UNALLOCATED (ret->toc_offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ret->symbol_is_glue = 0;
|
|
|
|
|
ret->glue_insn = 0;
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
HASH_CHECK_INIT (ret);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (struct bfd_hash_entry *) ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize a PE linker hash table. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2006-03-16 13:20:16 +01:00
|
|
|
|
ppc_coff_link_hash_table_init (struct ppc_coff_link_hash_table *table,
|
|
|
|
|
bfd *abfd,
|
|
|
|
|
struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
|
|
|
|
|
struct bfd_hash_table *,
|
|
|
|
|
const char *),
|
|
|
|
|
unsigned int entsize)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2006-03-16 13:20:16 +01:00
|
|
|
|
return _bfd_coff_link_hash_table_init (&table->root, abfd, newfunc, entsize);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a PE linker hash table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_link_hash_table *
|
|
|
|
|
ppc_coff_link_hash_table_create (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
struct ppc_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 ppc_coff_link_hash_table);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-04-04 21:53:38 +02:00
|
|
|
|
ret = (struct ppc_coff_link_hash_table *) bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (ret == NULL)
|
|
|
|
|
return NULL;
|
2006-03-16 13:20:16 +01:00
|
|
|
|
if (!ppc_coff_link_hash_table_init (ret, abfd,
|
|
|
|
|
ppc_coff_link_hash_newfunc,
|
|
|
|
|
sizeof (struct ppc_coff_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 (struct bfd_link_hash_table *) NULL;
|
|
|
|
|
}
|
|
|
|
|
return &ret->root.root;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Now, tailor coffcode.h to use our hash stuff. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define coff_bfd_link_hash_table_create ppc_coff_link_hash_table_create
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* The nt loader points the toc register to &toc + 32768, in order to
|
|
|
|
|
use the complete range of a 16-bit displacement. We have to adjust
|
|
|
|
|
for this when we fix up loads displaced off the toc reg. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define TOC_LOAD_ADJUSTMENT (-32768)
|
|
|
|
|
#define TOC_SECTION_NAME ".private.toc"
|
|
|
|
|
|
|
|
|
|
/* The main body of code is in coffcode.h. */
|
|
|
|
|
|
|
|
|
|
#define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (3)
|
|
|
|
|
|
|
|
|
|
/* In case we're on a 32-bit machine, construct a 64-bit "-1" value
|
|
|
|
|
from smaller values. Start with zero, widen, *then* decrement. */
|
|
|
|
|
#define MINUS_ONE (((bfd_vma)0) - 1)
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* These should definitely go in a header file somewhere... */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* NOP */
|
|
|
|
|
#define IMAGE_REL_PPC_ABSOLUTE 0x0000
|
|
|
|
|
|
|
|
|
|
/* 64-bit address */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR64 0x0001
|
|
|
|
|
|
|
|
|
|
/* 32-bit address */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR32 0x0002
|
|
|
|
|
|
|
|
|
|
/* 26-bit address, shifted left 2 (branch absolute) */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR24 0x0003
|
|
|
|
|
|
|
|
|
|
/* 16-bit address */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR16 0x0004
|
|
|
|
|
|
|
|
|
|
/* 16-bit address, shifted left 2 (load doubleword) */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR14 0x0005
|
|
|
|
|
|
|
|
|
|
/* 26-bit PC-relative offset, shifted left 2 (branch relative) */
|
|
|
|
|
#define IMAGE_REL_PPC_REL24 0x0006
|
|
|
|
|
|
|
|
|
|
/* 16-bit PC-relative offset, shifted left 2 (br cond relative) */
|
|
|
|
|
#define IMAGE_REL_PPC_REL14 0x0007
|
|
|
|
|
|
|
|
|
|
/* 16-bit offset from TOC base */
|
|
|
|
|
#define IMAGE_REL_PPC_TOCREL16 0x0008
|
|
|
|
|
|
|
|
|
|
/* 16-bit offset from TOC base, shifted left 2 (load doubleword) */
|
|
|
|
|
#define IMAGE_REL_PPC_TOCREL14 0x0009
|
|
|
|
|
|
|
|
|
|
/* 32-bit addr w/o image base */
|
|
|
|
|
#define IMAGE_REL_PPC_ADDR32NB 0x000A
|
|
|
|
|
|
|
|
|
|
/* va of containing section (as in an image sectionhdr) */
|
|
|
|
|
#define IMAGE_REL_PPC_SECREL 0x000B
|
|
|
|
|
|
|
|
|
|
/* sectionheader number */
|
|
|
|
|
#define IMAGE_REL_PPC_SECTION 0x000C
|
|
|
|
|
|
|
|
|
|
/* substitute TOC restore instruction iff symbol is glue code */
|
|
|
|
|
#define IMAGE_REL_PPC_IFGLUE 0x000D
|
|
|
|
|
|
|
|
|
|
/* symbol is glue code; virtual address is TOC restore instruction */
|
|
|
|
|
#define IMAGE_REL_PPC_IMGLUE 0x000E
|
|
|
|
|
|
|
|
|
|
/* va of containing section (limited to 16 bits) */
|
|
|
|
|
#define IMAGE_REL_PPC_SECREL16 0x000F
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Stuff to handle immediate data when the number of bits in the
|
|
|
|
|
data is greater than the number of bits in the immediate field
|
|
|
|
|
We need to do (usually) 32 bit arithmetic on 16 bit chunks. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_REFHI 0x0010
|
|
|
|
|
#define IMAGE_REL_PPC_REFLO 0x0011
|
|
|
|
|
#define IMAGE_REL_PPC_PAIR 0x0012
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* This is essentially the same as tocrel16, with TOCDEFN assumed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_TOCREL16_DEFN 0x0013
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Flag bits in IMAGE_RELOCATION.TYPE. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Subtract reloc value rather than adding it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_NEG 0x0100
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Fix branch prediction bit to predict branch taken. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_BRTAKEN 0x0200
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Fix branch prediction bit to predict branch not taken. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_BRNTAKEN 0x0400
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* TOC slot defined in file (or, data in toc). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_TOCDEFN 0x0800
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Masks to isolate above values in IMAGE_RELOCATION.Type. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define IMAGE_REL_PPC_TYPEMASK 0x00FF
|
|
|
|
|
#define IMAGE_REL_PPC_FLAGMASK 0x0F00
|
|
|
|
|
|
|
|
|
|
#define EXTRACT_TYPE(x) ((x) & IMAGE_REL_PPC_TYPEMASK)
|
|
|
|
|
#define EXTRACT_FLAGS(x) ((x) & IMAGE_REL_PPC_FLAGMASK)
|
|
|
|
|
#define EXTRACT_JUNK(x) \
|
|
|
|
|
((x) & ~(IMAGE_REL_PPC_TYPEMASK | IMAGE_REL_PPC_FLAGMASK))
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Static helper functions to make relocation work. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* (Work In Progress) */
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type ppc_refhi_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
static bfd_reloc_status_type ppc_pair_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type ppc_toc16_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type ppc_section_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type ppc_secrel_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type ppc_imglue_reloc PARAMS ((bfd *abfd,
|
|
|
|
|
arelent *reloc,
|
|
|
|
|
asymbol *symbol,
|
|
|
|
|
PTR data,
|
|
|
|
|
asection *section,
|
|
|
|
|
bfd *output_bfd,
|
|
|
|
|
char **error));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean in_reloc_p PARAMS((bfd *abfd, reloc_howto_type *howto));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* FIXME: It'll take a while to get through all of these. I only need a few to
|
|
|
|
|
get us started, so those I'll make sure work. Those marked FIXME are either
|
2003-02-20 19:59:32 +01:00
|
|
|
|
completely unverified or have a specific unknown marked in the comment. */
|
|
|
|
|
|
|
|
|
|
/* Relocation entries for Windows/NT on PowerPC.
|
|
|
|
|
|
|
|
|
|
From the document "" we find the following listed as used relocs:
|
|
|
|
|
|
|
|
|
|
ABSOLUTE : The noop
|
|
|
|
|
ADDR[64|32|16] : fields that hold addresses in data fields or the
|
|
|
|
|
16 bit displacement field on a load/store.
|
|
|
|
|
ADDR[24|14] : fields that hold addresses in branch and cond
|
|
|
|
|
branches. These represent [26|16] bit addresses.
|
|
|
|
|
The low order 2 bits are preserved.
|
|
|
|
|
REL[24|14] : branches relative to the Instruction Address
|
|
|
|
|
register. These represent [26|16] bit addresses,
|
|
|
|
|
as before. The instruction field will be zero, and
|
|
|
|
|
the address of the SYM will be inserted at link time.
|
|
|
|
|
TOCREL16 : 16 bit displacement field referring to a slot in
|
|
|
|
|
toc.
|
|
|
|
|
TOCREL14 : 16 bit displacement field, similar to REL14 or ADDR14.
|
|
|
|
|
ADDR32NB : 32 bit address relative to the virtual origin.
|
|
|
|
|
(On the alpha, this is always a linker generated thunk)
|
|
|
|
|
(i.e. 32bit addr relative to the image base)
|
|
|
|
|
SECREL : The value is relative to the start of the section
|
|
|
|
|
containing the symbol.
|
|
|
|
|
SECTION : access to the header containing the item. Supports the
|
|
|
|
|
codeview debugger.
|
|
|
|
|
|
|
|
|
|
In particular, note that the document does not indicate that the
|
|
|
|
|
relocations listed in the header file are used. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static reloc_howto_type ppc_coff_howto_table[] =
|
|
|
|
|
{
|
|
|
|
|
/* IMAGE_REL_PPC_ABSOLUTE 0x0000 NOP */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_ABSOLUTE, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
0, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
0, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_dont, /* dont complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ABSOLUTE", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0x00, /* src_mask */
|
|
|
|
|
0x00, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_ADDR64 0x0001 64-bit address */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO(IMAGE_REL_PPC_ADDR64, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
3, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
64, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR64", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
MINUS_ONE, /* src_mask */
|
|
|
|
|
MINUS_ONE, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_ADDR32 0x0002 32-bit address */
|
|
|
|
|
/* Used: */
|
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR32, /* type */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR32", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_ADDR24 0x0003 26-bit address, shifted left 2 (branch absolute) */
|
|
|
|
|
/* the LI field is in bit 6 through bit 29 is 24 bits, + 2 for the shift */
|
|
|
|
|
/* Of course, That's the IBM approved bit numbering, which is not what */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* anyone else uses.... The li field is in bit 2 thru 25 */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Used: */
|
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR24, /* type */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
26, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR24", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0x07fffffc, /* src_mask */
|
|
|
|
|
0x07fffffc, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_ADDR16 0x0004 16-bit address */
|
|
|
|
|
/* Used: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR16, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR16", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_ADDR14 0x0005 */
|
|
|
|
|
/* 16-bit address, shifted left 2 (load doubleword) */
|
|
|
|
|
/* FIXME: the mask is likely wrong, and the bit position may be as well */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR14, /* type */
|
|
|
|
|
1, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR16", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_REL24 0x0006 */
|
|
|
|
|
/* 26-bit PC-relative offset, shifted left 2 (branch relative) */
|
|
|
|
|
/* Used: */
|
|
|
|
|
HOWTO (IMAGE_REL_PPC_REL24, /* type */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
26, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"REL24", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0x3fffffc, /* src_mask */
|
|
|
|
|
0x3fffffc, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_REL14 0x0007 */
|
|
|
|
|
/* 16-bit PC-relative offset, shifted left 2 (br cond relative) */
|
|
|
|
|
/* FIXME: the mask is likely wrong, and the bit position may be as well */
|
|
|
|
|
/* FIXME: how does it know how far to shift? */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR14, /* type */
|
|
|
|
|
1, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR16", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_TOCREL16 0x0008 */
|
|
|
|
|
/* 16-bit offset from TOC base */
|
|
|
|
|
/* Used: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_TOCREL16,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_toc16_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"TOCREL16", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_TOCREL14 0x0009 */
|
|
|
|
|
/* 16-bit offset from TOC base, shifted left 2 (load doubleword) */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_TOCREL14,/* type */
|
|
|
|
|
1, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"TOCREL14", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_ADDR32NB 0x000A */
|
|
|
|
|
/* 32-bit addr w/ image base */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_ADDR32NB,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"ADDR32NB", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* IMAGE_REL_PPC_SECREL 0x000B */
|
|
|
|
|
/* va of containing section (as in an image sectionhdr) */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_SECREL,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_secrel_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"SECREL", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_SECTION 0x000C */
|
|
|
|
|
/* sectionheader number */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_SECTION,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_section_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"SECTION", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_IFGLUE 0x000D */
|
|
|
|
|
/* substitute TOC restore instruction iff symbol is glue code */
|
|
|
|
|
/* Used: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_IFGLUE,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"IFGLUE", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_IMGLUE 0x000E */
|
|
|
|
|
/* symbol is glue code; virtual address is TOC restore instruction */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_IMGLUE,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
32, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_imglue_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"IMGLUE", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_SECREL16 0x000F */
|
|
|
|
|
/* va of containing section (limited to 16 bits) */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_SECREL16,/* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"SECREL16", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_REFHI 0x0010 */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_REFHI, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_refhi_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"REFHI", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_REFLO 0x0011 */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_REFLO, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_refhi_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"REFLO", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_PAIR 0x0012 */
|
|
|
|
|
/* Unused: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO (IMAGE_REL_PPC_PAIR, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_pair_reloc, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"PAIR", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
|
0xffffffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* IMAGE_REL_PPC_TOCREL16_DEFN 0x0013 */
|
|
|
|
|
/* 16-bit offset from TOC base, without causing a definition */
|
|
|
|
|
/* Used: */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
HOWTO ( (IMAGE_REL_PPC_TOCREL16 | IMAGE_REL_PPC_TOCDEFN), /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
16, /* bitsize */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* pc_relative */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* bitpos */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0, /* special_function */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
"TOCREL16, TOCDEFN", /* name */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, /* partial_inplace */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
|
0xffff, /* dst_mask */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Some really cheezy macros that can be turned on to test stderr :-) */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_RELOC
|
|
|
|
|
#define UN_IMPL(x) \
|
|
|
|
|
{ \
|
|
|
|
|
static int i; \
|
|
|
|
|
if (i == 0) \
|
|
|
|
|
{ \
|
|
|
|
|
i = 1; \
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (stderr,_("Unimplemented Relocation -- %s\n"),x); \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
} \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define DUMP_RELOC(n,r) \
|
|
|
|
|
{ \
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (stderr,"%s sym %d, addr %d, addend %d\n", \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
n, (*(r->sym_ptr_ptr))->name, \
|
|
|
|
|
r->address, r->addend); \
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* Given a reloc name, n, and a pointer to an internal_reloc,
|
|
|
|
|
dump out interesting information on the contents
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define n_name _n._n_name
|
|
|
|
|
#define n_zeroes _n._n_n._n_zeroes
|
2003-02-20 19:59:32 +01:00
|
|
|
|
#define n_offset _n._n_n._n_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
#define DUMP_RELOC2(n,r) \
|
|
|
|
|
{ \
|
|
|
|
|
fprintf (stderr,"%s sym %d, r_vaddr %d %s\n", \
|
|
|
|
|
n, r->r_symndx, r->r_vaddr, \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(((r->r_type) & IMAGE_REL_PPC_TOCDEFN) == 0) \
|
2003-02-20 19:59:32 +01:00
|
|
|
|
?" ":" TOCDEFN" ); \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
#define UN_IMPL(x)
|
|
|
|
|
#define DUMP_RELOC(n,r)
|
|
|
|
|
#define DUMP_RELOC2(n,r)
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* TOC construction and management routines. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* This file is compiled twice, and these variables are defined in one
|
|
|
|
|
of the compilations. FIXME: This is confusing and weird. Also,
|
|
|
|
|
BFD should not use global variables. */
|
2003-02-20 19:59:32 +01:00
|
|
|
|
extern bfd * bfd_of_toc_owner;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
extern long int global_toc_size;
|
|
|
|
|
extern long int import_table_size;
|
|
|
|
|
extern long int first_thunk_address;
|
|
|
|
|
extern long int thunk_size;
|
|
|
|
|
|
|
|
|
|
enum toc_type
|
|
|
|
|
{
|
|
|
|
|
default_toc,
|
|
|
|
|
toc_32,
|
|
|
|
|
toc_64
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum ref_category
|
|
|
|
|
{
|
|
|
|
|
priv,
|
|
|
|
|
pub,
|
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
|
|
|
|
tocdata
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct list_ele
|
|
|
|
|
{
|
|
|
|
|
struct list_ele *next;
|
|
|
|
|
bfd_vma addr;
|
|
|
|
|
enum ref_category cat;
|
|
|
|
|
int offset;
|
|
|
|
|
const char *name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern struct list_ele *head;
|
|
|
|
|
extern struct list_ele *tail;
|
|
|
|
|
|
|
|
|
|
static void record_toc
|
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
|
|
|
|
PARAMS ((asection *, bfd_signed_vma, enum ref_category, const char *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
record_toc (toc_section, our_toc_offset, cat, name)
|
|
|
|
|
asection *toc_section;
|
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_signed_vma our_toc_offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
enum ref_category cat;
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Add this entry to our toc addr-offset-name list. */
|
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 list_ele);
|
|
|
|
|
struct list_ele *t = (struct list_ele *) bfd_malloc (amt);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (t == NULL)
|
|
|
|
|
abort ();
|
|
|
|
|
t->next = 0;
|
|
|
|
|
t->offset = our_toc_offset;
|
|
|
|
|
t->name = name;
|
|
|
|
|
t->cat = cat;
|
|
|
|
|
t->addr = toc_section->output_offset + our_toc_offset;
|
|
|
|
|
|
|
|
|
|
if (head == 0)
|
|
|
|
|
{
|
|
|
|
|
head = t;
|
|
|
|
|
tail = t;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
tail->next = t;
|
|
|
|
|
tail = t;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean ppc_record_toc_entry
|
1999-05-03 09:29:11 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, asection *, int, enum toc_type));
|
|
|
|
|
static void ppc_mark_symbol_as_glue
|
|
|
|
|
PARAMS ((bfd *, int, struct internal_reloc *));
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Record a toc offset against a symbol. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ppc_record_toc_entry(abfd, info, sec, sym, toc_kind)
|
|
|
|
|
bfd *abfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *sec ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int sym;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
enum toc_type toc_kind ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct ppc_coff_link_hash_entry *h;
|
|
|
|
|
int *local_syms;
|
|
|
|
|
|
|
|
|
|
h = 0;
|
|
|
|
|
|
|
|
|
|
h = (struct ppc_coff_link_hash_entry *) (obj_coff_sym_hashes (abfd)[sym]);
|
|
|
|
|
if (h != 0)
|
|
|
|
|
{
|
|
|
|
|
HASH_CHECK(h);
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (h == 0)
|
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
local_syms = obj_coff_local_toc_table(abfd);
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (local_syms == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
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;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* allocate a 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 = (bfd_size_type) obj_raw_syment_count (abfd) * sizeof (int);
|
|
|
|
|
local_syms = (int *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (local_syms == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
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
|
|
|
|
obj_coff_local_toc_table (abfd) = local_syms;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
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
|
|
|
|
for (i = 0; i < obj_raw_syment_count (abfd); ++i)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
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
|
|
|
|
SET_UNALLOCATED (local_syms[i]);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (IS_UNALLOCATED(local_syms[sym]))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
local_syms[sym] = global_toc_size;
|
|
|
|
|
global_toc_size += 4;
|
|
|
|
|
|
2003-11-24 19:06:40 +01:00
|
|
|
|
/* The size must fit in a 16-bit displacement. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (global_toc_size > 65535)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("TOC overflow"));
|
|
|
|
|
bfd_set_error (bfd_error_file_too_big);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Check to see if there's a toc slot allocated. If not, do it
|
|
|
|
|
here. It will be used in relocate_section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (IS_UNALLOCATED(h->toc_offset))
|
|
|
|
|
{
|
|
|
|
|
h->toc_offset = global_toc_size;
|
|
|
|
|
global_toc_size += 4;
|
|
|
|
|
|
2003-11-24 19:06:40 +01:00
|
|
|
|
/* The size must fit in a 16-bit displacement. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (global_toc_size >= 65535)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("TOC overflow"));
|
|
|
|
|
bfd_set_error (bfd_error_file_too_big);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
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
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Record a toc offset against a symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
ppc_mark_symbol_as_glue(abfd, sym, rel)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int sym;
|
|
|
|
|
struct internal_reloc *rel;
|
|
|
|
|
{
|
|
|
|
|
struct ppc_coff_link_hash_entry *h;
|
|
|
|
|
|
|
|
|
|
h = (struct ppc_coff_link_hash_entry *) (obj_coff_sym_hashes (abfd)[sym]);
|
|
|
|
|
|
|
|
|
|
HASH_CHECK(h);
|
|
|
|
|
|
|
|
|
|
h->symbol_is_glue = 1;
|
|
|
|
|
h->glue_insn = bfd_get_32 (abfd, (bfd_byte *) &rel->r_vaddr);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* COFF_IMAGE_WITH_PE */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return TRUE if this relocation should
|
2000-11-14 20:23:49 +01:00
|
|
|
|
appear in the output .reloc section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean in_reloc_p(abfd, howto)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd * abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
return
|
|
|
|
|
(! howto->pc_relative)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_ADDR32NB)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_TOCREL16)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_IMGLUE)
|
2000-11-14 20:23:49 +01:00
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_IFGLUE)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_SECREL)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_SECTION)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_SECREL16)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_REFHI)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_REFLO)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_PAIR)
|
|
|
|
|
&& (howto->type != IMAGE_REL_PPC_TOCREL16_DEFN) ;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2007-10-15 04:00:11 +02:00
|
|
|
|
static bfd_boolean
|
|
|
|
|
write_base_file_entry (bfd *obfd, struct bfd_link_info *info, bfd_vma addr)
|
|
|
|
|
{
|
|
|
|
|
if (coff_data (obfd)->pe)
|
|
|
|
|
addr -= pe_data (obfd)->pe_opthdr.ImageBase;
|
|
|
|
|
if (fwrite (&addr, sizeof (addr), 1, (FILE *) info->base_file) == 1)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
bfd_set_error (bfd_error_system_call);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* The reloc processing routine for the optimized COFF linker. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_ppc_relocate_section (output_bfd, info, input_bfd, input_section,
|
|
|
|
|
contents, relocs, syms, sections)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
bfd *input_bfd;
|
|
|
|
|
asection *input_section;
|
|
|
|
|
bfd_byte *contents;
|
|
|
|
|
struct internal_reloc *relocs;
|
|
|
|
|
struct internal_syment *syms;
|
|
|
|
|
asection **sections;
|
|
|
|
|
{
|
|
|
|
|
struct internal_reloc *rel;
|
|
|
|
|
struct internal_reloc *relend;
|
|
|
|
|
asection *toc_section = 0;
|
|
|
|
|
bfd_vma relocation;
|
|
|
|
|
reloc_howto_type *howto = 0;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
|
/* If we are performing a relocatable link, we don't need to do a
|
1999-05-03 09:29:11 +02:00
|
|
|
|
thing. The caller will take care of adjusting the reloc
|
|
|
|
|
addresses and symbol indices. */
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (info->relocatable)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
rel = relocs;
|
|
|
|
|
relend = rel + input_section->reloc_count;
|
|
|
|
|
for (; rel < relend; rel++)
|
|
|
|
|
{
|
|
|
|
|
long symndx;
|
|
|
|
|
struct ppc_coff_link_hash_entry *h;
|
|
|
|
|
struct internal_syment *sym;
|
|
|
|
|
bfd_vma val;
|
|
|
|
|
|
|
|
|
|
asection *sec;
|
|
|
|
|
bfd_reloc_status_type rstat;
|
|
|
|
|
bfd_byte *loc;
|
|
|
|
|
|
|
|
|
|
unsigned short r_type = EXTRACT_TYPE (rel->r_type);
|
|
|
|
|
unsigned short r_flags = EXTRACT_FLAGS(rel->r_type);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
symndx = rel->r_symndx;
|
|
|
|
|
loc = contents + rel->r_vaddr - input_section->vma;
|
|
|
|
|
|
|
|
|
|
/* FIXME: check bounds on r_type */
|
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
|
|
|
|
|
if (symndx == -1)
|
|
|
|
|
{
|
|
|
|
|
h = NULL;
|
|
|
|
|
sym = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
h = (struct ppc_coff_link_hash_entry *)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(obj_coff_sym_hashes (input_bfd)[symndx]);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (h != 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
HASH_CHECK(h);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sym = syms + symndx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (r_type == IMAGE_REL_PPC_IMGLUE && h == 0)
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* An IMGLUE reloc must have a name. Something is very wrong. */
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sec = NULL;
|
|
|
|
|
val = 0;
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* FIXME: PAIR unsupported in the following code. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (symndx == -1)
|
|
|
|
|
sec = bfd_abs_section_ptr;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sec = sections[symndx];
|
|
|
|
|
val = (sec->output_section->vma
|
|
|
|
|
+ sec->output_offset
|
|
|
|
|
+ sym->n_value);
|
|
|
|
|
if (! obj_pe (output_bfd))
|
|
|
|
|
val -= sec->vma;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
HASH_CHECK(h);
|
|
|
|
|
|
|
|
|
|
if (h->root.root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->root.root.type == bfd_link_hash_defweak)
|
|
|
|
|
{
|
|
|
|
|
sec = h->root.root.u.def.section;
|
|
|
|
|
val = (h->root.root.u.def.value
|
|
|
|
|
+ sec->output_section->vma
|
|
|
|
|
+ sec->output_offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! ((*info->callbacks->undefined_symbol)
|
|
|
|
|
(info, h->root.root.root.string, input_bfd, input_section,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
rel->r_vaddr - input_section->vma, TRUE)))
|
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rstat = bfd_reloc_ok;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Each case must do its own relocation, setting rstat appropriately. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (r_type)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: unsupported relocation type 0x%02x"), input_bfd, r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case IMAGE_REL_PPC_TOCREL16:
|
|
|
|
|
{
|
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_signed_vma our_toc_offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int fixit;
|
|
|
|
|
|
|
|
|
|
DUMP_RELOC2(howto->name, rel);
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (toc_section == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
toc_section = bfd_get_section_by_name (bfd_of_toc_owner,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
TOC_SECTION_NAME);
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if ( toc_section == NULL )
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* There is no toc section. Something is very wrong. */
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Amazing bit tricks present. As we may have seen earlier, we
|
|
|
|
|
use the 1 bit to tell us whether or not a toc offset has been
|
|
|
|
|
allocated. Now that they've all been allocated, we will use
|
|
|
|
|
the 1 bit to tell us if we've written this particular toc
|
|
|
|
|
entry out. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
fixit = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h == 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
{
|
|
|
|
|
/* It is a file local symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int *local_toc_table;
|
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
|
|
sym = syms + symndx;
|
|
|
|
|
name = sym->_n._n_name;
|
|
|
|
|
|
|
|
|
|
local_toc_table = obj_coff_local_toc_table(input_bfd);
|
|
|
|
|
our_toc_offset = local_toc_table[symndx];
|
|
|
|
|
|
|
|
|
|
if (IS_WRITTEN(our_toc_offset))
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* If it has been written out, it is marked with the
|
1999-05-03 09:29:11 +02:00
|
|
|
|
1 bit. Fix up our offset, but do not write it out
|
2003-02-20 19:59:32 +01:00
|
|
|
|
again. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
MAKE_ADDR_AGAIN(our_toc_offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Write out the toc entry. */
|
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
|
|
|
|
record_toc (toc_section, our_toc_offset, priv,
|
|
|
|
|
strdup (name));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
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_32 (output_bfd, val,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
toc_section->contents + our_toc_offset);
|
|
|
|
|
|
|
|
|
|
MARK_AS_WRITTEN(local_toc_table[symndx]);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
fixit = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const char *name = h->root.root.root.string;
|
|
|
|
|
our_toc_offset = h->toc_offset;
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if ((r_flags & IMAGE_REL_PPC_TOCDEFN)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
== IMAGE_REL_PPC_TOCDEFN )
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* This is unbelievable cheese. Some knowledgable asm
|
|
|
|
|
hacker has decided to use r2 as a base for loading
|
|
|
|
|
a value. He/She does this by setting the tocdefn bit,
|
|
|
|
|
and not supplying a toc definition. The behaviour is
|
|
|
|
|
then to use the difference between the value of the
|
|
|
|
|
symbol and the actual location of the toc as the toc
|
|
|
|
|
index.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
In fact, what is usually happening is, because the
|
|
|
|
|
Import Address Table is mapped immediately following
|
|
|
|
|
the toc, some trippy library code trying for speed on
|
2000-11-14 20:23:49 +01:00
|
|
|
|
dll linkage, takes advantage of that and considers
|
2003-02-20 19:59:32 +01:00
|
|
|
|
the IAT to be part of the toc, thus saving a load. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
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
|
|
|
|
our_toc_offset = val - (toc_section->output_section->vma
|
|
|
|
|
+ toc_section->output_offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-11-24 19:06:40 +01:00
|
|
|
|
/* The size must still fit in a 16-bit displacement. */
|
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_vma) our_toc_offset >= 65535)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Relocation for %s of %lx exceeds Toc size limit"),
|
|
|
|
|
input_bfd, 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
|
|
|
|
(unsigned long) our_toc_offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
record_toc (toc_section, our_toc_offset, pub,
|
|
|
|
|
strdup (name));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2003-02-20 19:59:32 +01:00
|
|
|
|
else if (IS_WRITTEN (our_toc_offset))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* If it has been written out, it is marked with the
|
1999-05-03 09:29:11 +02:00
|
|
|
|
1 bit. Fix up our offset, but do not write it out
|
2003-02-20 19:59:32 +01:00
|
|
|
|
again. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
MAKE_ADDR_AGAIN(our_toc_offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
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
|
|
|
|
record_toc(toc_section, our_toc_offset, pub,
|
|
|
|
|
strdup (name));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Write out the toc entry. */
|
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_32 (output_bfd, val,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
toc_section->contents + our_toc_offset);
|
|
|
|
|
|
|
|
|
|
MARK_AS_WRITTEN(h->toc_offset);
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* The tricky part is that this is the address that
|
|
|
|
|
needs a .reloc entry for it. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
fixit = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (fixit && info->base_file)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* So if this is non pcrelative, and is referenced
|
2003-02-20 19:59:32 +01:00
|
|
|
|
to a section or a common symbol, then it needs a reloc. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Relocation to a symbol in a section which
|
2000-11-14 20:23:49 +01:00
|
|
|
|
isn't absolute - we output the address here
|
2003-02-20 19:59:32 +01:00
|
|
|
|
to a file. */
|
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_vma addr = (toc_section->output_section->vma
|
|
|
|
|
+ toc_section->output_offset + our_toc_offset);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
2007-10-15 04:00:11 +02:00
|
|
|
|
if (!write_base_file_entry (output_bfd, info, addr))
|
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* FIXME: this test is conservative. */
|
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 ((r_flags & IMAGE_REL_PPC_TOCDEFN) != IMAGE_REL_PPC_TOCDEFN
|
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
|
|
|
|
&& (bfd_vma) our_toc_offset > toc_section->size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Relocation exceeds allocated TOC (%lx)"),
|
|
|
|
|
input_bfd, (unsigned long) toc_section->size);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Now we know the relocation for this toc reference. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
relocation = our_toc_offset + TOC_LOAD_ADJUSTMENT;
|
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
|
|
|
|
rstat = _bfd_relocate_contents (howto, input_bfd, relocation, loc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_IFGLUE:
|
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* To solve this, we need to know whether or not the symbol
|
|
|
|
|
appearing on the call instruction is a glue function or not.
|
|
|
|
|
A glue function must announce itself via a IMGLUE reloc, and
|
|
|
|
|
the reloc contains the required toc restore instruction. */
|
|
|
|
|
DUMP_RELOC2 (howto->name, rel);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (h != 0)
|
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (h->symbol_is_glue == 1)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
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_32 (input_bfd, (bfd_vma) h->glue_insn, loc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_SECREL:
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Unimplemented: codeview debugging information. */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* For fast access to the header of the section
|
|
|
|
|
containing the item. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_SECTION:
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Unimplemented: codeview debugging information. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Is used to indicate that the value should be relative
|
|
|
|
|
to the beginning of the section that contains the
|
2003-02-20 19:59:32 +01:00
|
|
|
|
symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_ABSOLUTE:
|
|
|
|
|
{
|
|
|
|
|
const char *my_name;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h == 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
my_name = (syms+symndx)->_n._n_name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2003-02-20 19:59:32 +01:00
|
|
|
|
my_name = h->root.root.root.string;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("Warning: unsupported reloc %s <file %B, section %A>\n"
|
|
|
|
|
"sym %ld (%s), r_vaddr %ld (%lx)"),
|
|
|
|
|
input_bfd, input_section, howto->name,
|
|
|
|
|
rel->r_symndx, my_name, (long) rel->r_vaddr,
|
|
|
|
|
(unsigned long) rel->r_vaddr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_IMGLUE:
|
|
|
|
|
{
|
|
|
|
|
/* There is nothing to do now. This reloc was noted in the first
|
2003-02-20 19:59:32 +01:00
|
|
|
|
pass over the relocs, and the glue instruction extracted. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char *my_name;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (h->symbol_is_glue == 1)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
my_name = h->root.root.root.string;
|
|
|
|
|
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Out of order IMGLUE reloc for %s"), input_bfd, my_name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32NB:
|
|
|
|
|
{
|
|
|
|
|
const char *name = 0;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
|
|
|
|
DUMP_RELOC2 (howto->name, rel);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2006-09-16 20:12:17 +02:00
|
|
|
|
if (CONST_STRNEQ (input_section->name, ".idata$2") && first_thunk_address == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Set magic values. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int idata5offset;
|
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 coff_link_hash_entry *myh;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata5_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
first_thunk_address = myh->root.u.def.value +
|
|
|
|
|
sec->output_section->vma +
|
|
|
|
|
sec->output_offset -
|
1999-05-03 09:29:11 +02:00
|
|
|
|
pe_data(output_bfd)->pe_opthdr.ImageBase;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
idata5offset = myh->root.u.def.value;
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata6_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
thunk_size = myh->root.u.def.value - idata5offset;
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata4_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
import_table_size = myh->root.u.def.value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (h == 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
{
|
|
|
|
|
/* It is a file local symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sym = syms + symndx;
|
|
|
|
|
name = sym->_n._n_name;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
char *target = 0;
|
|
|
|
|
|
|
|
|
|
name = h->root.root.root.string;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
if (strcmp (".idata$2", name) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
target = "__idata2_magic__";
|
2003-02-20 19:59:32 +01:00
|
|
|
|
else if (strcmp (".idata$4", name) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
target = "__idata4_magic__";
|
2003-02-20 19:59:32 +01:00
|
|
|
|
else if (strcmp (".idata$5", name) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
target = "__idata5_magic__";
|
|
|
|
|
|
|
|
|
|
if (target != 0)
|
|
|
|
|
{
|
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 coff_link_hash_entry *myh;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
target,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (myh == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* Missing magic cookies. Something is very wrong. */
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
|
|
|
|
val = myh->root.u.def.value +
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sec->output_section->vma + sec->output_offset;
|
|
|
|
|
if (first_thunk_address == 0)
|
|
|
|
|
{
|
|
|
|
|
int idata5offset;
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata5_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
first_thunk_address = myh->root.u.def.value +
|
|
|
|
|
sec->output_section->vma +
|
|
|
|
|
sec->output_offset -
|
1999-05-03 09:29:11 +02:00
|
|
|
|
pe_data(output_bfd)->pe_opthdr.ImageBase;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
idata5offset = myh->root.u.def.value;
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata6_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
thunk_size = myh->root.u.def.value - idata5offset;
|
|
|
|
|
myh = coff_link_hash_lookup (coff_hash_table (info),
|
|
|
|
|
"__idata4_magic__",
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
import_table_size = myh->root.u.def.value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rstat = _bfd_relocate_contents (howto,
|
2003-02-20 19:59:32 +01:00
|
|
|
|
input_bfd,
|
|
|
|
|
val -
|
|
|
|
|
pe_data (output_bfd)->pe_opthdr.ImageBase,
|
|
|
|
|
loc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IMAGE_REL_PPC_REL24:
|
|
|
|
|
DUMP_RELOC2(howto->name, rel);
|
|
|
|
|
val -= (input_section->output_section->vma
|
|
|
|
|
+ input_section->output_offset);
|
|
|
|
|
|
|
|
|
|
rstat = _bfd_relocate_contents (howto,
|
2000-11-14 20:23:49 +01:00
|
|
|
|
input_bfd,
|
|
|
|
|
val,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
loc);
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_ADDR16:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR24:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32:
|
|
|
|
|
DUMP_RELOC2(howto->name, rel);
|
|
|
|
|
rstat = _bfd_relocate_contents (howto,
|
2000-11-14 20:23:49 +01:00
|
|
|
|
input_bfd,
|
|
|
|
|
val,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
loc);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
if (info->base_file)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* So if this is non pcrelative, and is referenced
|
2003-02-20 19:59:32 +01:00
|
|
|
|
to a section or a common symbol, then it needs a reloc. */
|
|
|
|
|
if (sym && pe_data(output_bfd)->in_reloc_p (output_bfd, howto))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Relocation to a symbol in a section which
|
2000-11-14 20:23:49 +01:00
|
|
|
|
isn't absolute - we output the address here
|
2003-02-20 19:59:32 +01:00
|
|
|
|
to a file. */
|
2007-10-15 04:00:11 +02:00
|
|
|
|
bfd_vma addr = (rel->r_vaddr
|
|
|
|
|
- input_section->vma
|
|
|
|
|
+ input_section->output_offset
|
|
|
|
|
+ input_section->output_section->vma);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2007-10-15 04:00:11 +02:00
|
|
|
|
if (!write_base_file_entry (output_bfd, info, addr))
|
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (rstat)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
case bfd_reloc_ok:
|
|
|
|
|
break;
|
|
|
|
|
case bfd_reloc_overflow:
|
|
|
|
|
{
|
|
|
|
|
const char *name;
|
|
|
|
|
char buf[SYMNMLEN + 1];
|
|
|
|
|
|
|
|
|
|
if (symndx == -1)
|
|
|
|
|
name = "*ABS*";
|
|
|
|
|
else if (h != NULL)
|
2004-10-21 17:28:33 +02:00
|
|
|
|
name = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (sym == NULL)
|
|
|
|
|
name = "*unknown*";
|
|
|
|
|
else if (sym->_n._n_n._n_zeroes == 0
|
|
|
|
|
&& sym->_n._n_n._n_offset != 0)
|
|
|
|
|
name = obj_coff_strings (input_bfd) + sym->_n._n_n._n_offset;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strncpy (buf, sym->_n._n_name, SYMNMLEN);
|
|
|
|
|
buf[SYMNMLEN] = '\0';
|
|
|
|
|
name = buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! ((*info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
|
(info, (h ? &h->root.root : NULL), name, howto->name,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(bfd_vma) 0, input_bfd,
|
|
|
|
|
input_section, rel->r_vaddr - input_section->vma)))
|
2003-02-20 19:59:32 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-11-14 20:23:49 +01:00
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
|
|
|
|
|
/* FIXME: BFD should not use global variables. This file is compiled
|
|
|
|
|
twice, and these variables are shared. This is confusing and
|
|
|
|
|
weird. */
|
|
|
|
|
|
|
|
|
|
long int global_toc_size = 4;
|
|
|
|
|
|
|
|
|
|
bfd* bfd_of_toc_owner = 0;
|
|
|
|
|
|
|
|
|
|
long int import_table_size;
|
|
|
|
|
long int first_thunk_address;
|
|
|
|
|
long int thunk_size;
|
|
|
|
|
|
|
|
|
|
struct list_ele *head;
|
|
|
|
|
struct list_ele *tail;
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
h1 = N_("\n\t\t\tTOC MAPPING\n\n");
|
|
|
|
|
static char *
|
|
|
|
|
h2 = N_(" TOC disassembly Comments Name\n");
|
|
|
|
|
static char *
|
|
|
|
|
h3 = N_(" Offset spelling (if present)\n");
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
dump_toc (vfile)
|
|
|
|
|
PTR vfile;
|
|
|
|
|
{
|
|
|
|
|
FILE *file = (FILE *) vfile;
|
|
|
|
|
struct list_ele *t;
|
|
|
|
|
|
2009-01-02 17:11:37 +01:00
|
|
|
|
fputs (_(h1), file);
|
|
|
|
|
fputs (_(h2), file);
|
|
|
|
|
fputs (_(h3), file);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-22 02:08:53 +01:00
|
|
|
|
for (t = head; t != 0; t=t->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
const char *cat = "";
|
|
|
|
|
|
|
|
|
|
if (t->cat == priv)
|
|
|
|
|
cat = _("private ");
|
|
|
|
|
else if (t->cat == pub)
|
|
|
|
|
cat = _("public ");
|
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
|
|
|
|
else if (t->cat == tocdata)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
cat = _("data-in-toc ");
|
|
|
|
|
|
|
|
|
|
if (t->offset > global_toc_size)
|
|
|
|
|
{
|
|
|
|
|
if (t->offset <= global_toc_size + thunk_size)
|
|
|
|
|
cat = _("IAT reference ");
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (file,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_("**** global_toc_size %ld(%lx), thunk_size %ld(%lx)\n"),
|
2008-07-30 06:34:58 +02:00
|
|
|
|
global_toc_size, (unsigned long) global_toc_size,
|
|
|
|
|
thunk_size, (unsigned long) thunk_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
cat = _("Out of bounds!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (file,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
" %04lx (%d)", (unsigned long) t->offset, t->offset - 32768);
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (file,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
" %s %s\n",
|
|
|
|
|
cat, t->name);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-22 02:08:53 +01:00
|
|
|
|
fprintf (file, "\n");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean
|
2000-11-14 20:23:49 +01:00
|
|
|
|
ppc_allocate_toc_section (info)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
bfd_byte *foo;
|
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;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static char test_char = '1';
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
if ( global_toc_size == 0 ) /* FIXME: does this get me in trouble? */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (bfd_of_toc_owner == 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* No toc owner? Something is very wrong. */
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
s = bfd_get_section_by_name ( bfd_of_toc_owner , TOC_SECTION_NAME);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if (s == NULL)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* No toc section? Something is very wrong. */
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
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 = global_toc_size;
|
|
|
|
|
foo = (bfd_byte *) bfd_alloc (bfd_of_toc_owner, amt);
|
|
|
|
|
memset(foo, test_char, (size_t) global_toc_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
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
|
|
|
|
s->size = global_toc_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
s->contents = foo;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ppc_process_before_allocation (abfd, info)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
struct internal_reloc *i, *rel;
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Here we have a bfd that is to be included on the link. We have a hook
|
2000-11-14 20:23:49 +01:00
|
|
|
|
to do reloc rummaging, before section sizes are nailed down. */
|
2003-02-20 19:59:32 +01:00
|
|
|
|
_bfd_coff_get_external_symbols (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Rummage around all the relocs and map the toc. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sec = abfd->sections;
|
|
|
|
|
|
|
|
|
|
if (sec == 0)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (; sec != 0; sec = sec->next)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
{
|
|
|
|
|
if (sec->reloc_count == 0)
|
|
|
|
|
continue;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* load the relocs */
|
|
|
|
|
/* FIXME: there may be a storage leak here */
|
|
|
|
|
i=_bfd_coff_read_internal_relocs(abfd,sec,1,0,0,0);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
if (i == 0)
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
for (rel = i; rel < i + sec->reloc_count; ++rel)
|
|
|
|
|
{
|
|
|
|
|
unsigned short r_type = EXTRACT_TYPE (rel->r_type);
|
|
|
|
|
unsigned short r_flags = EXTRACT_FLAGS (rel->r_type);
|
|
|
|
|
bfd_boolean ok = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, rel);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
switch(r_type)
|
|
|
|
|
{
|
|
|
|
|
case IMAGE_REL_PPC_TOCREL16:
|
|
|
|
|
/* If TOCDEFN is on, ignore as someone else has allocated the
|
|
|
|
|
toc entry. */
|
|
|
|
|
if ((r_flags & IMAGE_REL_PPC_TOCDEFN) != IMAGE_REL_PPC_TOCDEFN)
|
|
|
|
|
ok = ppc_record_toc_entry(abfd, info, sec,
|
|
|
|
|
rel->r_symndx, default_toc);
|
|
|
|
|
if (!ok)
|
|
|
|
|
return FALSE;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_IMGLUE:
|
|
|
|
|
ppc_mark_symbol_as_glue (abfd, rel->r_symndx, rel);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_refhi_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
UN_IMPL("REFHI");
|
|
|
|
|
DUMP_RELOC("REFHI",reloc_entry);
|
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
|
|
return bfd_reloc_undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_pair_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
UN_IMPL("PAIR");
|
|
|
|
|
DUMP_RELOC("PAIR",reloc_entry);
|
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
|
|
return bfd_reloc_undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_toc16_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-02-20 19:59:32 +01:00
|
|
|
|
UN_IMPL ("TOCREL16");
|
|
|
|
|
DUMP_RELOC ("TOCREL16",reloc_entry);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
2003-02-20 19:59:32 +01:00
|
|
|
|
return bfd_reloc_continue;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_secrel_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
UN_IMPL("SECREL");
|
|
|
|
|
DUMP_RELOC("SECREL",reloc_entry);
|
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_section_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
UN_IMPL("SECTION");
|
|
|
|
|
DUMP_RELOC("SECTION",reloc_entry);
|
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2003-02-20 19:59:32 +01:00
|
|
|
|
ppc_imglue_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
|
input_section, output_bfd, error_message)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED;
|
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED;
|
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *output_bfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
char **error_message ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
UN_IMPL("IMGLUE");
|
|
|
|
|
DUMP_RELOC("IMGLUE",reloc_entry);
|
|
|
|
|
|
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define MAX_RELOC_INDEX \
|
2000-11-15 21:20:52 +01:00
|
|
|
|
(sizeof (ppc_coff_howto_table) / sizeof (ppc_coff_howto_table[0]) - 1)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-11-24 19:06:40 +01:00
|
|
|
|
/* FIXME: There is a possibility that when we read in a reloc from a file,
|
2000-11-14 20:23:49 +01:00
|
|
|
|
that there are some bits encoded in the upper portion of the
|
2003-02-20 19:59:32 +01:00
|
|
|
|
type field. Not yet implemented. */
|
|
|
|
|
static void ppc_coff_rtype2howto PARAMS ((arelent *, struct internal_reloc *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ppc_coff_rtype2howto (relent, internal)
|
|
|
|
|
arelent *relent;
|
|
|
|
|
struct internal_reloc *internal;
|
2000-11-14 20:23:49 +01:00
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* We can encode one of three things in the type field, aside from the
|
|
|
|
|
type:
|
|
|
|
|
1. IMAGE_REL_PPC_NEG - indicates the value field is a subtraction
|
|
|
|
|
value, rather than an addition value
|
|
|
|
|
2. IMAGE_REL_PPC_BRTAKEN, IMAGE_REL_PPC_BRNTAKEN - indicates that
|
|
|
|
|
the branch is expected to be taken or not.
|
|
|
|
|
3. IMAGE_REL_PPC_TOCDEFN - toc slot definition in the file
|
|
|
|
|
For now, we just strip this stuff to find the type, and ignore it other
|
2003-02-20 19:59:32 +01:00
|
|
|
|
than that. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
unsigned short r_type = EXTRACT_TYPE (internal->r_type);
|
|
|
|
|
unsigned short r_flags = EXTRACT_FLAGS(internal->r_type);
|
|
|
|
|
unsigned short junk = EXTRACT_JUNK (internal->r_type);
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* The masking process only slices off the bottom byte for r_type. */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
if ( r_type > MAX_RELOC_INDEX )
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Check for absolute crap. */
|
|
|
|
|
if (junk != 0)
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
switch(r_type)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
case IMAGE_REL_PPC_ADDR16:
|
|
|
|
|
case IMAGE_REL_PPC_REL24:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR24:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32:
|
|
|
|
|
case IMAGE_REL_PPC_IFGLUE:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32NB:
|
|
|
|
|
case IMAGE_REL_PPC_SECTION:
|
|
|
|
|
case IMAGE_REL_PPC_SECREL:
|
2003-02-20 19:59:32 +01:00
|
|
|
|
DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_IMGLUE:
|
2003-02-20 19:59:32 +01:00
|
|
|
|
DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_TOCREL16:
|
2003-02-20 19:59:32 +01:00
|
|
|
|
DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (r_flags & IMAGE_REL_PPC_TOCDEFN)
|
|
|
|
|
howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16_DEFN;
|
|
|
|
|
else
|
|
|
|
|
howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2011-01-14 13:35:56 +01:00
|
|
|
|
(*_bfd_error_handler) (_("warning: unsupported reloc %s [%d] used -- it may not work"),
|
|
|
|
|
ppc_coff_howto_table[r_type].name,
|
|
|
|
|
r_type);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
relent->howto = howto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
|
coff_ppc_rtype_to_howto (abfd, sec, rel, h, sym, addendp)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
asection *sec;
|
|
|
|
|
struct internal_reloc *rel;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
struct coff_link_hash_entry *h ATTRIBUTE_UNUSED;
|
|
|
|
|
struct internal_syment *sym ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma *addendp;
|
|
|
|
|
{
|
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
|
|
|
|
|
/* We can encode one of three things in the type field, aside from the
|
|
|
|
|
type:
|
|
|
|
|
1. IMAGE_REL_PPC_NEG - indicates the value field is a subtraction
|
|
|
|
|
value, rather than an addition value
|
|
|
|
|
2. IMAGE_REL_PPC_BRTAKEN, IMAGE_REL_PPC_BRNTAKEN - indicates that
|
|
|
|
|
the branch is expected to be taken or not.
|
|
|
|
|
3. IMAGE_REL_PPC_TOCDEFN - toc slot definition in the file
|
|
|
|
|
For now, we just strip this stuff to find the type, and ignore it other
|
2003-02-20 19:59:32 +01:00
|
|
|
|
than that. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
unsigned short r_type = EXTRACT_TYPE (rel->r_type);
|
|
|
|
|
unsigned short r_flags = EXTRACT_FLAGS (rel->r_type);
|
|
|
|
|
unsigned short junk = EXTRACT_JUNK (rel->r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* The masking process only slices off the bottom byte for r_type. */
|
|
|
|
|
if (r_type > MAX_RELOC_INDEX)
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* Check for absolute crap. */
|
|
|
|
|
if (junk != 0)
|
2000-11-15 21:20:52 +01:00
|
|
|
|
abort ();
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
|
|
|
|
switch(r_type)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32NB:
|
|
|
|
|
DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel);
|
|
|
|
|
*addendp -= pe_data(sec->output_section->owner)->pe_opthdr.ImageBase;
|
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_TOCREL16:
|
|
|
|
|
DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel);
|
|
|
|
|
if (r_flags & IMAGE_REL_PPC_TOCDEFN)
|
|
|
|
|
howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16_DEFN;
|
|
|
|
|
else
|
|
|
|
|
howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_ADDR16:
|
|
|
|
|
case IMAGE_REL_PPC_REL24:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR24:
|
|
|
|
|
case IMAGE_REL_PPC_ADDR32:
|
|
|
|
|
case IMAGE_REL_PPC_IFGLUE:
|
|
|
|
|
case IMAGE_REL_PPC_SECTION:
|
|
|
|
|
case IMAGE_REL_PPC_SECREL:
|
|
|
|
|
DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel);
|
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_REL_PPC_IMGLUE:
|
|
|
|
|
DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel);
|
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2011-01-14 13:35:56 +01:00
|
|
|
|
(*_bfd_error_handler) (_("warning: unsupported reloc %s [%d] used -- it may not work"),
|
|
|
|
|
ppc_coff_howto_table[r_type].name,
|
|
|
|
|
r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
howto = ppc_coff_howto_table + r_type;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return howto;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* A cheesy little macro to make the code a little more readable. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define HOW2MAP(bfd_rtype,ppc_rtype) \
|
|
|
|
|
case bfd_rtype: return &ppc_coff_howto_table[ppc_rtype]
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *ppc_coff_reloc_type_lookup
|
|
|
|
|
PARAMS ((bfd *, bfd_reloc_code_real_type));
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
|
ppc_coff_reloc_type_lookup (abfd, code)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
|
{
|
|
|
|
|
switch (code)
|
|
|
|
|
{
|
|
|
|
|
HOW2MAP(BFD_RELOC_32_GOTOFF, IMAGE_REL_PPC_IMGLUE);
|
|
|
|
|
HOW2MAP(BFD_RELOC_16_GOT_PCREL, IMAGE_REL_PPC_IFGLUE);
|
|
|
|
|
HOW2MAP(BFD_RELOC_16, IMAGE_REL_PPC_ADDR16);
|
|
|
|
|
HOW2MAP(BFD_RELOC_PPC_B26, IMAGE_REL_PPC_REL24);
|
|
|
|
|
HOW2MAP(BFD_RELOC_PPC_BA26, IMAGE_REL_PPC_ADDR24);
|
|
|
|
|
HOW2MAP(BFD_RELOC_PPC_TOC16, IMAGE_REL_PPC_TOCREL16);
|
|
|
|
|
HOW2MAP(BFD_RELOC_16_GOTOFF, IMAGE_REL_PPC_TOCREL16_DEFN);
|
|
|
|
|
HOW2MAP(BFD_RELOC_32, IMAGE_REL_PPC_ADDR32);
|
|
|
|
|
HOW2MAP(BFD_RELOC_RVA, IMAGE_REL_PPC_ADDR32NB);
|
2000-11-14 20:23:49 +01:00
|
|
|
|
default:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#undef HOW2MAP
|
2007-03-26 14:23:03 +02:00
|
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
|
ppc_coff_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
const char *r_name)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
|
i < sizeof (ppc_coff_howto_table) / sizeof (ppc_coff_howto_table[0]);
|
|
|
|
|
i++)
|
|
|
|
|
if (ppc_coff_howto_table[i].name != NULL
|
|
|
|
|
&& strcasecmp (ppc_coff_howto_table[i].name, r_name) == 0)
|
|
|
|
|
return &ppc_coff_howto_table[i];
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* Tailor coffcode.h -- macro heaven. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define RTYPE2HOWTO(cache_ptr, dst) ppc_coff_rtype2howto (cache_ptr, dst)
|
|
|
|
|
|
|
|
|
|
/* We use the special COFF backend linker, with our own special touch. */
|
|
|
|
|
|
|
|
|
|
#define coff_bfd_reloc_type_lookup ppc_coff_reloc_type_lookup
|
2007-03-26 14:23:03 +02:00
|
|
|
|
#define coff_bfd_reloc_name_lookup ppc_coff_reloc_name_lookup
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define coff_rtype_to_howto coff_ppc_rtype_to_howto
|
|
|
|
|
#define coff_relocate_section coff_ppc_relocate_section
|
2000-11-14 20:23:49 +01:00
|
|
|
|
#define coff_bfd_final_link ppc_bfd_coff_final_link
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifndef COFF_IMAGE_WITH_PE
|
2001-09-21 16:25:09 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define SELECT_RELOC(internal, howto) {internal.r_type=howto->type;}
|
|
|
|
|
|
|
|
|
|
#define COFF_PAGE_SIZE 0x1000
|
|
|
|
|
|
1999-09-12 01:38:11 +02:00
|
|
|
|
/* FIXME: This controls some code that used to be in peicode.h and is
|
|
|
|
|
now in peigen.c. It will not control the code in peigen.c. If
|
|
|
|
|
anybody wants to get this working, you will need to fix that. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define POWERPC_LE_PE
|
|
|
|
|
|
1999-09-11 23:39:03 +02:00
|
|
|
|
#define COFF_SECTION_ALIGNMENT_ENTRIES \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".idata$2"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".idata$3"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".idata$4"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".idata$5"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".idata$6"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 1 }, \
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".reloc"), \
|
|
|
|
|
COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 1 }
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "coffcode.h"
|
|
|
|
|
|
|
|
|
|
#ifndef COFF_IMAGE_WITH_PE
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean ppc_do_last PARAMS ((bfd *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static bfd *ppc_get_last PARAMS ((void));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ppc_do_last (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (abfd == bfd_of_toc_owner)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bfd *
|
|
|
|
|
ppc_get_last()
|
|
|
|
|
{
|
|
|
|
|
return bfd_of_toc_owner;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 19:59:32 +01:00
|
|
|
|
/* This piece of machinery exists only to guarantee that the bfd that holds
|
2000-11-14 20:23:49 +01:00
|
|
|
|
the toc section is written last.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
This does depend on bfd_make_section attaching a new section to the
|
2000-11-14 20:23:49 +01:00
|
|
|
|
end of the section list for the bfd.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
This is otherwise intended to be functionally the same as
|
|
|
|
|
cofflink.c:_bfd_coff_final_link(). It is specifically different only
|
|
|
|
|
where the POWERPC_LE_PE macro modifies the code. It is left in as a
|
2003-02-20 19:59:32 +01:00
|
|
|
|
precise form of comment. krk@cygnus.com */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Do the final link step. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ppc_bfd_coff_final_link (abfd, info)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type symesz;
|
|
|
|
|
struct coff_final_link_info finfo;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean debug_merge_allocated;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
asection *o;
|
|
|
|
|
struct bfd_link_order *p;
|
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 max_sym_count;
|
|
|
|
|
bfd_size_type max_lineno_count;
|
|
|
|
|
bfd_size_type max_reloc_count;
|
|
|
|
|
bfd_size_type max_output_reloc_count;
|
|
|
|
|
bfd_size_type max_contents_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
file_ptr rel_filepos;
|
|
|
|
|
unsigned int relsz;
|
|
|
|
|
file_ptr line_filepos;
|
|
|
|
|
unsigned int linesz;
|
|
|
|
|
bfd *sub;
|
|
|
|
|
bfd_byte *external_relocs = NULL;
|
|
|
|
|
char strbuf[STRING_SIZE_SIZE];
|
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;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
symesz = bfd_coff_symesz (abfd);
|
|
|
|
|
|
|
|
|
|
finfo.info = info;
|
|
|
|
|
finfo.output_bfd = abfd;
|
|
|
|
|
finfo.strtab = NULL;
|
|
|
|
|
finfo.section_info = NULL;
|
|
|
|
|
finfo.last_file_index = -1;
|
|
|
|
|
finfo.last_bf_index = -1;
|
|
|
|
|
finfo.internal_syms = NULL;
|
|
|
|
|
finfo.sec_ptrs = NULL;
|
|
|
|
|
finfo.sym_indices = NULL;
|
|
|
|
|
finfo.outsyms = NULL;
|
|
|
|
|
finfo.linenos = NULL;
|
|
|
|
|
finfo.contents = NULL;
|
|
|
|
|
finfo.external_relocs = NULL;
|
|
|
|
|
finfo.internal_relocs = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
debug_merge_allocated = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
coff_data (abfd)->link_info = info;
|
|
|
|
|
|
|
|
|
|
finfo.strtab = _bfd_stringtab_init ();
|
|
|
|
|
if (finfo.strtab == NULL)
|
|
|
|
|
goto error_return;
|
|
|
|
|
|
|
|
|
|
if (! coff_debug_merge_hash_table_init (&finfo.debug_merge))
|
|
|
|
|
goto error_return;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
debug_merge_allocated = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Compute the file positions for all the sections. */
|
|
|
|
|
if (! abfd->output_has_begun)
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_coff_compute_section_file_positions (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Count the line numbers and relocation entries required for the
|
|
|
|
|
output file. Set the file positions for the relocs. */
|
|
|
|
|
rel_filepos = obj_relocbase (abfd);
|
|
|
|
|
relsz = bfd_coff_relsz (abfd);
|
|
|
|
|
max_contents_size = 0;
|
|
|
|
|
max_lineno_count = 0;
|
|
|
|
|
max_reloc_count = 0;
|
|
|
|
|
|
|
|
|
|
for (o = abfd->sections; o != NULL; o = o->next)
|
|
|
|
|
{
|
|
|
|
|
o->reloc_count = 0;
|
|
|
|
|
o->lineno_count = 0;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
2005-05-04 13:00:28 +02:00
|
|
|
|
for (p = o->map_head.link_order; p != NULL; p = p->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (p->type == bfd_indirect_link_order)
|
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
sec = p->u.indirect.section;
|
|
|
|
|
|
|
|
|
|
/* Mark all sections which are to be included in the
|
|
|
|
|
link. This will normally be every section. We need
|
|
|
|
|
to do this so that we can identify any sections which
|
|
|
|
|
the linker has decided to not include. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
sec->linker_mark = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (info->strip == strip_none
|
|
|
|
|
|| info->strip == strip_some)
|
|
|
|
|
o->lineno_count += sec->lineno_count;
|
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (info->relocatable)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
o->reloc_count += sec->reloc_count;
|
|
|
|
|
|
2004-06-28 15:57:59 +02:00
|
|
|
|
if (sec->rawsize > max_contents_size)
|
|
|
|
|
max_contents_size = sec->rawsize;
|
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 > max_contents_size)
|
|
|
|
|
max_contents_size = sec->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (sec->lineno_count > max_lineno_count)
|
|
|
|
|
max_lineno_count = sec->lineno_count;
|
|
|
|
|
if (sec->reloc_count > max_reloc_count)
|
|
|
|
|
max_reloc_count = sec->reloc_count;
|
|
|
|
|
}
|
2003-06-25 08:40:27 +02:00
|
|
|
|
else if (info->relocatable
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& (p->type == bfd_section_reloc_link_order
|
|
|
|
|
|| p->type == bfd_symbol_reloc_link_order))
|
|
|
|
|
++o->reloc_count;
|
|
|
|
|
}
|
|
|
|
|
if (o->reloc_count == 0)
|
|
|
|
|
o->rel_filepos = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
o->flags |= SEC_RELOC;
|
|
|
|
|
o->rel_filepos = rel_filepos;
|
|
|
|
|
rel_filepos += o->reloc_count * relsz;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
|
/* If doing a relocatable link, allocate space for the pointers we
|
1999-05-03 09:29:11 +02:00
|
|
|
|
need to keep. */
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (info->relocatable)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
/* We use section_count + 1, rather than section_count, because
|
|
|
|
|
the target_index fields are 1 based. */
|
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 = abfd->section_count + 1;
|
|
|
|
|
amt *= sizeof (struct coff_link_section_info);
|
|
|
|
|
finfo.section_info = (struct coff_link_section_info *) bfd_malloc (amt);
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (finfo.section_info == NULL)
|
|
|
|
|
goto error_return;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (i = 0; i <= abfd->section_count; i++)
|
|
|
|
|
{
|
|
|
|
|
finfo.section_info[i].relocs = NULL;
|
|
|
|
|
finfo.section_info[i].rel_hashes = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We now know the size of the relocs, so we can determine the file
|
|
|
|
|
positions of the line numbers. */
|
|
|
|
|
line_filepos = rel_filepos;
|
|
|
|
|
linesz = bfd_coff_linesz (abfd);
|
|
|
|
|
max_output_reloc_count = 0;
|
2003-02-20 19:59:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (o = abfd->sections; o != NULL; o = o->next)
|
|
|
|
|
{
|
|
|
|
|
if (o->lineno_count == 0)
|
|
|
|
|
o->line_filepos = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
o->line_filepos = line_filepos;
|
|
|
|
|
line_filepos += o->lineno_count * linesz;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (o->reloc_count != 0)
|
|
|
|
|
{
|
|
|
|
|
/* We don't know the indices of global symbols until we have
|
|
|
|
|
written out all the local symbols. For each section in
|
|
|
|
|
the output file, we keep an array of pointers to hash
|
|
|
|
|
table entries. Each entry in the array corresponds to a
|
|
|
|
|
reloc. When we find a reloc against a global symbol, we
|
|
|
|
|
set the corresponding entry in this array so that we can
|
|
|
|
|
fix up the symbol index after we have written out all the
|
|
|
|
|
local symbols.
|
|
|
|
|
|
|
|
|
|
Because of this problem, we also keep the relocs in
|
|
|
|
|
memory until the end of the link. This wastes memory,
|
2003-06-25 08:40:27 +02:00
|
|
|
|
but only when doing a relocatable link, which is not the
|
1999-05-03 09:29:11 +02:00
|
|
|
|
common case. */
|
2003-06-25 08:40:27 +02:00
|
|
|
|
BFD_ASSERT (info->relocatable);
|
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 = o->reloc_count;
|
|
|
|
|
amt *= sizeof (struct internal_reloc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
finfo.section_info[o->target_index].relocs =
|
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 internal_reloc *) bfd_malloc (amt);
|
|
|
|
|
amt = o->reloc_count;
|
|
|
|
|
amt *= sizeof (struct coff_link_hash_entry *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
finfo.section_info[o->target_index].rel_hashes =
|
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 coff_link_hash_entry **) bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (finfo.section_info[o->target_index].relocs == NULL
|
|
|
|
|
|| finfo.section_info[o->target_index].rel_hashes == NULL)
|
|
|
|
|
goto error_return;
|
|
|
|
|
|
|
|
|
|
if (o->reloc_count > max_output_reloc_count)
|
|
|
|
|
max_output_reloc_count = o->reloc_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reset the reloc and lineno counts, so that we can use them to
|
|
|
|
|
count the number of entries we have output so far. */
|
|
|
|
|
o->reloc_count = 0;
|
|
|
|
|
o->lineno_count = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
obj_sym_filepos (abfd) = line_filepos;
|
|
|
|
|
|
|
|
|
|
/* Figure out the largest number of symbols in an input BFD. Take
|
|
|
|
|
the opportunity to clear the output_has_begun fields of all the
|
|
|
|
|
input BFD's. */
|
|
|
|
|
max_sym_count = 0;
|
|
|
|
|
for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
|
|
|
|
|
{
|
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 sz;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
sub->output_has_begun = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sz = obj_raw_syment_count (sub);
|
|
|
|
|
if (sz > max_sym_count)
|
|
|
|
|
max_sym_count = sz;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate some buffers used while linking. */
|
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 = max_sym_count * sizeof (struct internal_syment);
|
|
|
|
|
finfo.internal_syms = (struct internal_syment *) bfd_malloc (amt);
|
|
|
|
|
amt = max_sym_count * sizeof (asection *);
|
|
|
|
|
finfo.sec_ptrs = (asection **) bfd_malloc (amt);
|
|
|
|
|
amt = max_sym_count * sizeof (long);
|
|
|
|
|
finfo.sym_indices = (long *) bfd_malloc (amt);
|
|
|
|
|
amt = (max_sym_count + 1) * symesz;
|
|
|
|
|
finfo.outsyms = (bfd_byte *) bfd_malloc (amt);
|
|
|
|
|
amt = max_lineno_count * bfd_coff_linesz (abfd);
|
|
|
|
|
finfo.linenos = (bfd_byte *) bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
finfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
|
|
|
|
|
finfo.external_relocs = (bfd_byte *) bfd_malloc (max_reloc_count * relsz);
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (! info->relocatable)
|
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 = max_reloc_count * sizeof (struct internal_reloc);
|
|
|
|
|
finfo.internal_relocs = (struct internal_reloc *) bfd_malloc (amt);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((finfo.internal_syms == NULL && max_sym_count > 0)
|
|
|
|
|
|| (finfo.sec_ptrs == NULL && max_sym_count > 0)
|
|
|
|
|
|| (finfo.sym_indices == NULL && max_sym_count > 0)
|
|
|
|
|
|| finfo.outsyms == NULL
|
|
|
|
|
|| (finfo.linenos == NULL && max_lineno_count > 0)
|
|
|
|
|
|| (finfo.contents == NULL && max_contents_size > 0)
|
|
|
|
|
|| (finfo.external_relocs == NULL && max_reloc_count > 0)
|
2003-06-25 08:40:27 +02:00
|
|
|
|
|| (! info->relocatable
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& finfo.internal_relocs == NULL
|
|
|
|
|
&& max_reloc_count > 0))
|
|
|
|
|
goto error_return;
|
|
|
|
|
|
|
|
|
|
/* We now know the position of everything in the file, except that
|
|
|
|
|
we don't know the size of the symbol table and therefore we don't
|
|
|
|
|
know where the string table starts. We just build the string
|
|
|
|
|
table in memory as we go along. We process all the relocations
|
|
|
|
|
for a single input file at once. */
|
|
|
|
|
obj_raw_syment_count (abfd) = 0;
|
|
|
|
|
|
|
|
|
|
if (coff_backend_info (abfd)->_bfd_coff_start_final_link)
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_coff_start_final_link (abfd, info))
|
|
|
|
|
goto error_return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (o = abfd->sections; o != NULL; o = o->next)
|
|
|
|
|
{
|
2005-05-04 13:00:28 +02:00
|
|
|
|
for (p = o->map_head.link_order; p != NULL; p = p->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (p->type == bfd_indirect_link_order
|
|
|
|
|
&& (bfd_get_flavour (p->u.indirect.section->owner)
|
|
|
|
|
== bfd_target_coff_flavour))
|
|
|
|
|
{
|
|
|
|
|
sub = p->u.indirect.section->owner;
|
|
|
|
|
#ifdef POWERPC_LE_PE
|
|
|
|
|
if (! sub->output_has_begun && !ppc_do_last(sub))
|
|
|
|
|
#else
|
|
|
|
|
if (! sub->output_has_begun)
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
if (! _bfd_coff_link_input_bfd (&finfo, sub))
|
|
|
|
|
goto error_return;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
sub->output_has_begun = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (p->type == bfd_section_reloc_link_order
|
|
|
|
|
|| p->type == bfd_symbol_reloc_link_order)
|
|
|
|
|
{
|
|
|
|
|
if (! _bfd_coff_reloc_link_order (abfd, &finfo, o, p))
|
|
|
|
|
goto error_return;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! _bfd_default_link_order (abfd, info, o, p))
|
|
|
|
|
goto error_return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef POWERPC_LE_PE
|
|
|
|
|
{
|
|
|
|
|
bfd* last_one = ppc_get_last();
|
|
|
|
|
if (last_one)
|
|
|
|
|
{
|
|
|
|
|
if (! _bfd_coff_link_input_bfd (&finfo, last_one))
|
|
|
|
|
goto error_return;
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
last_one->output_has_begun = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Free up the buffers used by _bfd_coff_link_input_bfd. */
|
|
|
|
|
coff_debug_merge_hash_table_free (&finfo.debug_merge);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
debug_merge_allocated = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (finfo.internal_syms != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.internal_syms);
|
|
|
|
|
finfo.internal_syms = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.sec_ptrs != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.sec_ptrs);
|
|
|
|
|
finfo.sec_ptrs = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.sym_indices != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.sym_indices);
|
|
|
|
|
finfo.sym_indices = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.linenos != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.linenos);
|
|
|
|
|
finfo.linenos = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.contents != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.contents);
|
|
|
|
|
finfo.contents = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.external_relocs != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.external_relocs);
|
|
|
|
|
finfo.external_relocs = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (finfo.internal_relocs != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.internal_relocs);
|
|
|
|
|
finfo.internal_relocs = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The value of the last C_FILE symbol is supposed to be the symbol
|
|
|
|
|
index of the first external symbol. Write it out again if
|
|
|
|
|
necessary. */
|
|
|
|
|
if (finfo.last_file_index != -1
|
|
|
|
|
&& (unsigned int) finfo.last_file.n_value != obj_raw_syment_count (abfd))
|
|
|
|
|
{
|
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 pos;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
finfo.last_file.n_value = obj_raw_syment_count (abfd);
|
|
|
|
|
bfd_coff_swap_sym_out (abfd, (PTR) &finfo.last_file,
|
|
|
|
|
(PTR) finfo.outsyms);
|
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
|
|
|
|
pos = obj_sym_filepos (abfd) + finfo.last_file_index * symesz;
|
|
|
|
|
if (bfd_seek (abfd, pos, SEEK_SET) != 0
|
|
|
|
|
|| bfd_bwrite (finfo.outsyms, symesz, abfd) != symesz)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write out the global symbols. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
finfo.failed = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_link_hash_traverse (coff_hash_table (info), _bfd_coff_write_global_sym,
|
|
|
|
|
(PTR) &finfo);
|
|
|
|
|
if (finfo.failed)
|
|
|
|
|
goto error_return;
|
|
|
|
|
|
|
|
|
|
/* The outsyms buffer is used by _bfd_coff_write_global_sym. */
|
|
|
|
|
if (finfo.outsyms != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (finfo.outsyms);
|
|
|
|
|
finfo.outsyms = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (info->relocatable)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* Now that we have written out all the global symbols, we know
|
|
|
|
|
the symbol indices to use for relocs against them, and we can
|
|
|
|
|
finally write out the relocs. */
|
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 = max_output_reloc_count * relsz;
|
|
|
|
|
external_relocs = (bfd_byte *) bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (external_relocs == NULL)
|
|
|
|
|
goto error_return;
|
|
|
|
|
|
|
|
|
|
for (o = abfd->sections; o != NULL; o = o->next)
|
|
|
|
|
{
|
|
|
|
|
struct internal_reloc *irel;
|
|
|
|
|
struct internal_reloc *irelend;
|
|
|
|
|
struct coff_link_hash_entry **rel_hash;
|
|
|
|
|
bfd_byte *erel;
|
|
|
|
|
|
|
|
|
|
if (o->reloc_count == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
irel = finfo.section_info[o->target_index].relocs;
|
|
|
|
|
irelend = irel + o->reloc_count;
|
|
|
|
|
rel_hash = finfo.section_info[o->target_index].rel_hashes;
|
|
|
|
|
erel = external_relocs;
|
|
|
|
|
for (; irel < irelend; irel++, rel_hash++, erel += relsz)
|
|
|
|
|
{
|
|
|
|
|
if (*rel_hash != NULL)
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT ((*rel_hash)->indx >= 0);
|
|
|
|
|
irel->r_symndx = (*rel_hash)->indx;
|
|
|
|
|
}
|
|
|
|
|
bfd_coff_swap_reloc_out (abfd, (PTR) irel, (PTR) erel);
|
|
|
|
|
}
|
|
|
|
|
|
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 = relsz * o->reloc_count;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (bfd_seek (abfd, o->rel_filepos, SEEK_SET) != 0
|
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_bwrite ((PTR) external_relocs, amt, abfd) != amt)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
goto error_return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free (external_relocs);
|
|
|
|
|
external_relocs = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Free up the section information. */
|
|
|
|
|
if (finfo.section_info != NULL)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < abfd->section_count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (finfo.section_info[i].relocs != NULL)
|
|
|
|
|
free (finfo.section_info[i].relocs);
|
|
|
|
|
if (finfo.section_info[i].rel_hashes != NULL)
|
|
|
|
|
free (finfo.section_info[i].rel_hashes);
|
|
|
|
|
}
|
|
|
|
|
free (finfo.section_info);
|
|
|
|
|
finfo.section_info = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we have optimized stabs strings, output them. */
|
2004-06-28 15:57:59 +02:00
|
|
|
|
if (coff_hash_table (info)->stab_info.stabstr != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (! _bfd_write_stab_strings (abfd, &coff_hash_table (info)->stab_info))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write out the string table. */
|
|
|
|
|
if (obj_raw_syment_count (abfd) != 0)
|
|
|
|
|
{
|
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 pos;
|
|
|
|
|
|
|
|
|
|
pos = obj_sym_filepos (abfd) + obj_raw_syment_count (abfd) * symesz;
|
|
|
|
|
if (bfd_seek (abfd, pos, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#if STRING_SIZE_SIZE == 4
|
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
|
|
|
|
H_PUT_32 (abfd,
|
|
|
|
|
_bfd_stringtab_size (finfo.strtab) + STRING_SIZE_SIZE,
|
|
|
|
|
strbuf);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
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
|
|
|
|
#error Change H_PUT_32 above
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
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_bwrite (strbuf, (bfd_size_type) STRING_SIZE_SIZE, abfd)
|
|
|
|
|
!= STRING_SIZE_SIZE)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (! _bfd_stringtab_emit (abfd, finfo.strtab))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bfd_stringtab_free (finfo.strtab);
|
|
|
|
|
|
|
|
|
|
/* Setting bfd_get_symcount to 0 will cause write_object_contents to
|
|
|
|
|
not try to write out the symbols. */
|
|
|
|
|
bfd_get_symcount (abfd) = 0;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
error_return:
|
|
|
|
|
if (debug_merge_allocated)
|
|
|
|
|
coff_debug_merge_hash_table_free (&finfo.debug_merge);
|
|
|
|
|
if (finfo.strtab != NULL)
|
|
|
|
|
_bfd_stringtab_free (finfo.strtab);
|
|
|
|
|
if (finfo.section_info != NULL)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < abfd->section_count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (finfo.section_info[i].relocs != NULL)
|
|
|
|
|
free (finfo.section_info[i].relocs);
|
|
|
|
|
if (finfo.section_info[i].rel_hashes != NULL)
|
|
|
|
|
free (finfo.section_info[i].rel_hashes);
|
|
|
|
|
}
|
|
|
|
|
free (finfo.section_info);
|
|
|
|
|
}
|
|
|
|
|
if (finfo.internal_syms != NULL)
|
|
|
|
|
free (finfo.internal_syms);
|
|
|
|
|
if (finfo.sec_ptrs != NULL)
|
|
|
|
|
free (finfo.sec_ptrs);
|
|
|
|
|
if (finfo.sym_indices != NULL)
|
|
|
|
|
free (finfo.sym_indices);
|
|
|
|
|
if (finfo.outsyms != NULL)
|
|
|
|
|
free (finfo.outsyms);
|
|
|
|
|
if (finfo.linenos != NULL)
|
|
|
|
|
free (finfo.linenos);
|
|
|
|
|
if (finfo.contents != NULL)
|
|
|
|
|
free (finfo.contents);
|
|
|
|
|
if (finfo.external_relocs != NULL)
|
|
|
|
|
free (finfo.external_relocs);
|
|
|
|
|
if (finfo.internal_relocs != NULL)
|
|
|
|
|
free (finfo.internal_relocs);
|
|
|
|
|
if (external_relocs != NULL)
|
|
|
|
|
free (external_relocs);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-07-19 16:55:16 +02:00
|
|
|
|
/* Forward declaration for use by alternative_target field. */
|
|
|
|
|
#ifdef TARGET_BIG_SYM
|
|
|
|
|
extern const bfd_target TARGET_BIG_SYM;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-11-14 20:23:49 +01:00
|
|
|
|
/* The transfer vectors that lead the outside world to all of the above. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef TARGET_LITTLE_SYM
|
1999-07-19 16:55:16 +02:00
|
|
|
|
const bfd_target TARGET_LITTLE_SYM =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
TARGET_LITTLE_NAME, /* name or coff-arm-little */
|
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
|
BFD_ENDIAN_LITTLE, /* header byte order is little */
|
|
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* FIXME: object flags */
|
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
|
#else
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* section flags */
|
|
|
|
|
| SEC_LINK_ONCE | SEC_LINK_DUPLICATES),
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
0, /* leading char */
|
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
|
15, /* ar_max_namelen??? FIXMEmgo */
|
* targets.c (bfd_target): Make ar_max_namelen an unsigned char.
Add match_priority.
* configure.in: Bump bfd version.
* elfcode.h (elf_object_p): Delete hacks preventing match of
EM_NONE and ELFOSABI_NONE targets when a better match exists.
* elfxx-target.h (elf_match_priority): Define and use.
* format.c (bfd_check_format_matches): Use target match_priority
to choose best of multiple matching targets. In cases with multiple
matches rerun _bfd_check_format if we don't choose the last match.
* aout-adobe.c, * aout-arm.c, * aout-target.h, * aout-tic30.c,
* binary.c, * bout.c, * coff-alpha.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-ia64.c, * coff-mips.c, * coff-or32.c,
* coff-ppc.c, * coff-rs6000.c, * coff-sh.c, * coff-tic30.c,
* coff-tic54x.c, * coff-x86_64.c, * coff64-rs6000.c, * coffcode.h,
* i386msdos.c, * i386os9k.c, * ieee.c, * ihex.c, * mach-o-target.c,
* mipsbsd.c, * mmo.c, * nlm-target.h, * oasys.c, * pdp11.c,
* pe-mips.c, * pef.c, * plugin.c, * ppcboot.c, * som.c, * srec.c,
* tekhex.c, * trad-core.c, * verilog.c, * versados.c, * vms-alpha.c,
* vms-lib.c, * xsym.c: Init match_priority field.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2011-06-06 03:26:05 +02:00
|
|
|
|
0, /* match priority. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
|
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */
|
|
|
|
|
|
|
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
|
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format */
|
|
|
|
|
bfd_generic_archive_p, /* _bfd_dummy_target */ coff_object_p },
|
|
|
|
|
{bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */
|
|
|
|
|
bfd_false},
|
|
|
|
|
{bfd_false, coff_write_object_contents, /* bfd_write_contents */
|
|
|
|
|
_bfd_write_archive_contents, bfd_false},
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff),
|
|
|
|
|
BFD_JUMP_TABLE_COPY (coff),
|
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore),
|
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
|
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff),
|
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff),
|
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff),
|
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
1999-07-19 16:55:16 +02:00
|
|
|
|
|
|
|
|
|
/* Alternative_target. */
|
|
|
|
|
#ifdef TARGET_BIG_SYM
|
|
|
|
|
& TARGET_BIG_SYM,
|
|
|
|
|
#else
|
|
|
|
|
NULL,
|
|
|
|
|
#endif
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-07-19 16:55:16 +02:00
|
|
|
|
COFF_SWAP_TABLE
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TARGET_BIG_SYM
|
1999-07-19 16:55:16 +02:00
|
|
|
|
const bfd_target TARGET_BIG_SYM =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
TARGET_BIG_NAME,
|
2000-11-14 20:23:49 +01:00
|
|
|
|
bfd_target_coff_flavour,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
BFD_ENDIAN_BIG, /* data byte order is big */
|
|
|
|
|
BFD_ENDIAN_BIG, /* header byte order is big */
|
|
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* FIXME: object flags */
|
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
|
|
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
|
#else
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* section flags */
|
|
|
|
|
| SEC_LINK_ONCE | SEC_LINK_DUPLICATES),
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
0, /* leading char */
|
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
|
15, /* ar_max_namelen??? FIXMEmgo */
|
* targets.c (bfd_target): Make ar_max_namelen an unsigned char.
Add match_priority.
* configure.in: Bump bfd version.
* elfcode.h (elf_object_p): Delete hacks preventing match of
EM_NONE and ELFOSABI_NONE targets when a better match exists.
* elfxx-target.h (elf_match_priority): Define and use.
* format.c (bfd_check_format_matches): Use target match_priority
to choose best of multiple matching targets. In cases with multiple
matches rerun _bfd_check_format if we don't choose the last match.
* aout-adobe.c, * aout-arm.c, * aout-target.h, * aout-tic30.c,
* binary.c, * bout.c, * coff-alpha.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-ia64.c, * coff-mips.c, * coff-or32.c,
* coff-ppc.c, * coff-rs6000.c, * coff-sh.c, * coff-tic30.c,
* coff-tic54x.c, * coff-x86_64.c, * coff64-rs6000.c, * coffcode.h,
* i386msdos.c, * i386os9k.c, * ieee.c, * ihex.c, * mach-o-target.c,
* mipsbsd.c, * mmo.c, * nlm-target.h, * oasys.c, * pdp11.c,
* pe-mips.c, * pef.c, * plugin.c, * ppcboot.c, * som.c, * srec.c,
* tekhex.c, * trad-core.c, * verilog.c, * versados.c, * vms-alpha.c,
* vms-lib.c, * xsym.c: Init match_priority field.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2011-06-06 03:26:05 +02:00
|
|
|
|
0, /* match priority. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64,
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32,
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
|
|
|
|
|
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64,
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32,
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */
|
|
|
|
|
|
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format */
|
|
|
|
|
bfd_generic_archive_p, /* _bfd_dummy_target */ coff_object_p },
|
|
|
|
|
{bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */
|
|
|
|
|
bfd_false},
|
|
|
|
|
{bfd_false, coff_write_object_contents, /* bfd_write_contents */
|
|
|
|
|
_bfd_write_archive_contents, bfd_false},
|
|
|
|
|
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff),
|
|
|
|
|
BFD_JUMP_TABLE_COPY (coff),
|
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore),
|
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
|
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff),
|
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff),
|
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff),
|
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
1999-07-19 16:55:16 +02:00
|
|
|
|
/* Alternative_target. */
|
|
|
|
|
#ifdef TARGET_LITTLE_SYM
|
|
|
|
|
& TARGET_LITTLE_SYM,
|
|
|
|
|
#else
|
|
|
|
|
NULL,
|
|
|
|
|
#endif
|
2000-11-14 20:23:49 +01:00
|
|
|
|
|
1999-07-19 16:55:16 +02:00
|
|
|
|
COFF_SWAP_TABLE
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|