2000-04-08 01:06:58 +08:00
|
|
|
/* BFD back-end for TMS320C54X coff binaries.
|
2015-01-01 22:15:26 +08:00
|
|
|
Copyright (C) 1999-2015 Free Software Foundation, Inc.
|
2000-04-09 01:26:16 +08:00
|
|
|
Contributed by Timothy Wall (twall@cygnus.com)
|
2000-04-08 01:06:58 +08:00
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
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 22:26:43 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2000-04-08 01:06:58 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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 23:53:43 +08:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
|
2005-05-04 15:19:45 +08:00
|
|
|
02110-1301, USA. */
|
2000-04-08 01:06:58 +08:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 22:47:00 +08:00
|
|
|
#include "bfd.h"
|
2000-04-08 01:06:58 +08:00
|
|
|
#include "libbfd.h"
|
|
|
|
#include "bfdlink.h"
|
|
|
|
#include "coff/tic54x.h"
|
|
|
|
#include "coff/internal.h"
|
|
|
|
#include "libcoff.h"
|
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
#undef F_LSYMS
|
2000-04-08 01:06:58 +08:00
|
|
|
#define F_LSYMS F_LSYMS_TICOFF
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
static void
|
|
|
|
tic54x_reloc_processing (arelent *, struct internal_reloc *,
|
|
|
|
asymbol **, bfd *, asection *);
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 32-bit operations
|
|
|
|
The octet order is screwy. words are LSB first (LS octet, actually), but
|
|
|
|
longwords are MSW first. For example, 0x12345678 is encoded 0x5678 in the
|
|
|
|
first word and 0x1234 in the second. When looking at the data as stored in
|
|
|
|
the COFF file, you would see the octets ordered as 0x78, 0x56, 0x34, 0x12.
|
|
|
|
Don't bother with 64-bits, as there aren't any. */
|
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
static bfd_vma
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
tic54x_getl32 (const void *p)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
const bfd_byte *addr = p;
|
2000-04-08 01:06:58 +08:00
|
|
|
unsigned long v;
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
v = (unsigned long) addr[2];
|
2000-04-08 01:06:58 +08:00
|
|
|
v |= (unsigned long) addr[3] << 8;
|
|
|
|
v |= (unsigned long) addr[0] << 16;
|
|
|
|
v |= (unsigned long) addr[1] << 24;
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
return v;
|
2000-04-08 01:06:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
tic54x_putl32 (bfd_vma data, void *p)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
bfd_byte *addr = p;
|
|
|
|
addr[2] = data & 0xff;
|
|
|
|
addr[3] = (data >> 8) & 0xff;
|
|
|
|
addr[0] = (data >> 16) & 0xff;
|
|
|
|
addr[1] = (data >> 24) & 0xff;
|
2000-04-08 01:06:58 +08:00
|
|
|
}
|
|
|
|
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
static bfd_signed_vma
|
|
|
|
tic54x_getl_signed_32 (const void *p)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
const bfd_byte *addr = p;
|
2000-04-08 01:06:58 +08:00
|
|
|
unsigned long v;
|
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
v = (unsigned long) addr[2];
|
2000-04-08 01:06:58 +08:00
|
|
|
v |= (unsigned long) addr[3] << 8;
|
|
|
|
v |= (unsigned long) addr[0] << 16;
|
|
|
|
v |= (unsigned long) addr[1] << 24;
|
|
|
|
#define COERCE32(x) \
|
|
|
|
((bfd_signed_vma) (long) (((unsigned long) (x) ^ 0x80000000) - 0x80000000))
|
|
|
|
return COERCE32 (v);
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:21:27 +08:00
|
|
|
#define coff_get_section_load_page bfd_ticoff_get_section_load_page
|
|
|
|
#define coff_set_section_load_page bfd_ticoff_set_section_load_page
|
|
|
|
|
2000-11-16 08:54:12 +08:00
|
|
|
void
|
2012-07-13 22:22:50 +08:00
|
|
|
bfd_ticoff_set_section_load_page (asection *sect,
|
|
|
|
int page)
|
2000-04-18 10:21:27 +08:00
|
|
|
{
|
|
|
|
sect->lma = (sect->lma & ADDR_MASK) | PG_TO_FLAG(page);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-07-13 22:22:50 +08:00
|
|
|
bfd_ticoff_get_section_load_page (asection *sect)
|
2000-04-18 10:21:27 +08:00
|
|
|
{
|
|
|
|
int page;
|
|
|
|
|
2000-11-16 08:54:12 +08:00
|
|
|
/* Provide meaningful defaults for predefined sections. */
|
2012-05-05 11:05:32 +08:00
|
|
|
if (sect == bfd_com_section_ptr)
|
2000-04-18 10:21:27 +08:00
|
|
|
page = PG_DATA;
|
|
|
|
|
2012-05-05 11:05:32 +08:00
|
|
|
else if (bfd_is_und_section (sect)
|
|
|
|
|| bfd_is_abs_section (sect)
|
|
|
|
|| bfd_is_ind_section (sect))
|
2000-04-18 10:21:27 +08:00
|
|
|
page = PG_PROG;
|
|
|
|
|
|
|
|
else
|
|
|
|
page = FLAG_TO_PG (sect->lma);
|
|
|
|
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the architecture appropriately. Allow unkown architectures
|
2000-11-16 08:54:12 +08:00
|
|
|
(e.g. binary). */
|
2001-08-24 01:05:52 +08:00
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
static bfd_boolean
|
2012-07-13 22:22:50 +08:00
|
|
|
tic54x_set_arch_mach (bfd *abfd,
|
|
|
|
enum bfd_architecture arch,
|
|
|
|
unsigned long machine)
|
2000-04-18 10:21:27 +08:00
|
|
|
{
|
|
|
|
if (arch == bfd_arch_unknown)
|
|
|
|
arch = bfd_arch_tic54x;
|
|
|
|
|
|
|
|
else if (arch != bfd_arch_tic54x)
|
2002-11-30 16:39:46 +08:00
|
|
|
return FALSE;
|
2000-04-18 10:21:27 +08:00
|
|
|
|
|
|
|
return bfd_default_set_arch_mach (abfd, arch, machine);
|
|
|
|
}
|
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
static bfd_reloc_status_type
|
2012-07-13 22:22:50 +08:00
|
|
|
tic54x_relocation (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
arelent *reloc_entry,
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED,
|
|
|
|
void * data ATTRIBUTE_UNUSED,
|
|
|
|
asection *input_section,
|
|
|
|
bfd *output_bfd,
|
|
|
|
char **error_message ATTRIBUTE_UNUSED)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
if (output_bfd != (bfd *) NULL)
|
|
|
|
{
|
|
|
|
/* This is a partial relocation, and we want to apply the
|
|
|
|
relocation to the reloc entry rather than the raw data.
|
|
|
|
Modify the reloc inplace to reflect what we now know. */
|
|
|
|
reloc_entry->address += input_section->output_offset;
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
reloc_howto_type tic54x_howto_table[] =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
/* type,rightshift,size (0=byte, 1=short, 2=long),
|
|
|
|
bit size, pc_relative, bitpos, dont complain_on_overflow,
|
|
|
|
special_function, name, partial_inplace, src_mask, dst_mask, pcrel_offset. */
|
|
|
|
|
|
|
|
/* NORMAL BANK */
|
|
|
|
/* 16-bit direct reference to symbol's address. */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_RELWORD,0,1,16,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"REL16",FALSE,0xFFFF,0xFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 7 LSBs of an address */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_PARTLS7,0,1,7,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"LS7",FALSE,0x007F,0x007F,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 9 MSBs of an address */
|
|
|
|
/* TI assembler doesn't shift its encoding, and is thus incompatible */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_PARTMS9,7,1,9,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"MS9",FALSE,0x01FF,0x01FF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 23-bit relocation */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORD,0,2,23,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"RELEXT",FALSE,0x7FFFFF,0x7FFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 16 bits of 23-bit extended address */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORD16,0,1,16,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"RELEXT16",FALSE,0x7FFFFF,0x7FFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* upper 7 bits of 23-bit extended address */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORDMS7,16,1,7,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"RELEXTMS7",FALSE,0x7F,0x7F,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* ABSOLUTE BANK */
|
|
|
|
/* 16-bit direct reference to symbol's address, absolute */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_RELWORD,0,1,16,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"AREL16",FALSE,0xFFFF,0xFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 7 LSBs of an address, absolute */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_PARTLS7,0,1,7,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"ALS7",FALSE,0x007F,0x007F,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 9 MSBs of an address, absolute */
|
|
|
|
/* TI assembler doesn't shift its encoding, and is thus incompatible */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_PARTMS9,7,1,9,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"AMS9",FALSE,0x01FF,0x01FF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 23-bit direct reference, absolute */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORD,0,2,23,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"ARELEXT",FALSE,0x7FFFFF,0x7FFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 16 bits of 23-bit extended address, absolute */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORD16,0,1,16,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"ARELEXT16",FALSE,0x7FFFFF,0x7FFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* upper 7 bits of 23-bit extended address, absolute */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_EXTWORDMS7,16,1,7,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"ARELEXTMS7",FALSE,0x7F,0x7F,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
|
|
|
|
/* 32-bit relocation exclusively for stabs */
|
2002-11-30 16:39:46 +08:00
|
|
|
HOWTO (R_RELLONG,0,2,32,FALSE,0,complain_overflow_dont,
|
|
|
|
tic54x_relocation,"STAB",FALSE,0xFFFFFFFF,0xFFFFFFFF,FALSE),
|
2001-08-24 01:05:52 +08:00
|
|
|
};
|
2000-04-08 01:06:58 +08:00
|
|
|
|
|
|
|
#define coff_bfd_reloc_type_lookup tic54x_coff_reloc_type_lookup
|
2007-03-26 20:23:03 +08:00
|
|
|
#define coff_bfd_reloc_name_lookup tic54x_coff_reloc_name_lookup
|
2000-04-08 01:06:58 +08:00
|
|
|
|
|
|
|
/* For the case statement use the code values used tc_gen_reloc (defined in
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd/reloc.c) to map to the howto table entries. */
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
static reloc_howto_type *
|
|
|
|
tic54x_coff_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd_reloc_code_real_type code)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
return &tic54x_howto_table[0];
|
|
|
|
case BFD_RELOC_TIC54X_PARTLS7:
|
|
|
|
return &tic54x_howto_table[1];
|
|
|
|
case BFD_RELOC_TIC54X_PARTMS9:
|
|
|
|
return &tic54x_howto_table[2];
|
|
|
|
case BFD_RELOC_TIC54X_23:
|
|
|
|
return &tic54x_howto_table[3];
|
|
|
|
case BFD_RELOC_TIC54X_16_OF_23:
|
|
|
|
return &tic54x_howto_table[4];
|
|
|
|
case BFD_RELOC_TIC54X_MS7_OF_23:
|
|
|
|
return &tic54x_howto_table[5];
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
return &tic54x_howto_table[12];
|
|
|
|
default:
|
|
|
|
return (reloc_howto_type *) NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-26 20:23:03 +08:00
|
|
|
static reloc_howto_type *
|
|
|
|
tic54x_coff_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
const char *r_name)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < sizeof (tic54x_howto_table) / sizeof (tic54x_howto_table[0]);
|
|
|
|
i++)
|
|
|
|
if (tic54x_howto_table[i].name != NULL
|
|
|
|
&& strcasecmp (tic54x_howto_table[i].name, r_name) == 0)
|
|
|
|
return &tic54x_howto_table[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-11-16 08:54:12 +08:00
|
|
|
/* Code to turn a r_type into a howto ptr, uses the above howto table.
|
2001-08-24 01:05:52 +08:00
|
|
|
Called after some initial checking by the tic54x_rtype_to_howto fn below. */
|
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
static void
|
2012-07-13 22:22:50 +08:00
|
|
|
tic54x_lookup_howto (arelent *internal,
|
|
|
|
struct internal_reloc *dst)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
int bank = (dst->r_symndx == -1) ? HOWTO_BANK : 0;
|
2001-08-24 01:05:52 +08:00
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
for (i = 0; i < sizeof tic54x_howto_table/sizeof tic54x_howto_table[0]; i++)
|
|
|
|
{
|
|
|
|
if (tic54x_howto_table[i].type == dst->r_type)
|
|
|
|
{
|
|
|
|
internal->howto = tic54x_howto_table + i + bank;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(*_bfd_error_handler) (_("Unrecognized reloc type 0x%x"),
|
|
|
|
(unsigned int) dst->r_type);
|
2000-11-16 08:54:12 +08:00
|
|
|
abort ();
|
2000-04-08 01:06:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define RELOC_PROCESSING(RELENT,RELOC,SYMS,ABFD,SECT)\
|
|
|
|
tic54x_reloc_processing(RELENT,RELOC,SYMS,ABFD,SECT)
|
|
|
|
|
|
|
|
#define coff_rtype_to_howto coff_tic54x_rtype_to_howto
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
2012-07-13 22:22:50 +08:00
|
|
|
coff_tic54x_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
struct internal_reloc *rel,
|
|
|
|
struct coff_link_hash_entry *h ATTRIBUTE_UNUSED,
|
|
|
|
struct internal_syment *sym ATTRIBUTE_UNUSED,
|
|
|
|
bfd_vma *addendp)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
arelent genrel;
|
|
|
|
|
|
|
|
if (rel->r_symndx == -1 && addendp != NULL)
|
|
|
|
{
|
|
|
|
/* This is a TI "internal relocation", which means that the relocation
|
|
|
|
amount is the amount by which the current section is being relocated
|
2000-11-16 08:54:12 +08:00
|
|
|
in the output section. */
|
2000-04-08 01:06:58 +08:00
|
|
|
*addendp = (sec->output_section->vma + sec->output_offset) - sec->vma;
|
|
|
|
}
|
|
|
|
|
|
|
|
tic54x_lookup_howto (&genrel, rel);
|
|
|
|
|
|
|
|
return genrel.howto;
|
|
|
|
}
|
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
/* Replace the stock _bfd_coff_is_local_label_name to recognize TI COFF local
|
|
|
|
labels. */
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
static bfd_boolean
|
2012-07-13 22:22:50 +08:00
|
|
|
ticoff_bfd_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
const char *name)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
if (TICOFF_LOCAL_LABEL_P(name))
|
2002-11-30 16:39:46 +08:00
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
2000-04-08 01:06:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define coff_bfd_is_local_label_name ticoff_bfd_is_local_label_name
|
|
|
|
|
2000-11-16 08:54:12 +08:00
|
|
|
/* Customize coffcode.h; the default coff_ functions are set up to use COFF2;
|
2000-04-08 01:06:58 +08:00
|
|
|
coff_bad_format_hook uses BADMAG, so set that for COFF2. The COFF1
|
|
|
|
and COFF0 vectors use custom _bad_format_hook procs instead of setting
|
2001-08-24 01:05:52 +08:00
|
|
|
BADMAG. */
|
2000-04-08 01:06:58 +08:00
|
|
|
#define BADMAG(x) COFF2_BADMAG(x)
|
2008-07-18 19:30:22 +08:00
|
|
|
|
|
|
|
#ifndef bfd_pe_print_pdata
|
|
|
|
#define bfd_pe_print_pdata NULL
|
|
|
|
#endif
|
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
#include "coffcode.h"
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
static bfd_boolean
|
2012-07-13 22:22:50 +08:00
|
|
|
tic54x_set_section_contents (bfd *abfd,
|
|
|
|
sec_ptr section,
|
|
|
|
const void * location,
|
|
|
|
file_ptr offset,
|
|
|
|
bfd_size_type bytes_to_do)
|
2000-04-18 10:21:27 +08:00
|
|
|
{
|
2000-11-16 08:54:12 +08:00
|
|
|
return coff_set_section_contents (abfd, section, location,
|
2000-04-18 10:21:27 +08:00
|
|
|
offset, bytes_to_do);
|
|
|
|
}
|
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
static void
|
2012-07-13 22:22:50 +08:00
|
|
|
tic54x_reloc_processing (arelent *relent,
|
|
|
|
struct internal_reloc *reloc,
|
|
|
|
asymbol **symbols,
|
|
|
|
bfd *abfd,
|
|
|
|
asection *section)
|
2000-04-08 01:06:58 +08:00
|
|
|
{
|
|
|
|
asymbol *ptr;
|
|
|
|
|
|
|
|
relent->address = reloc->r_vaddr;
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
if (reloc->r_symndx != -1)
|
|
|
|
{
|
|
|
|
if (reloc->r_symndx < 0 || reloc->r_symndx >= obj_conv_table_size (abfd))
|
|
|
|
{
|
|
|
|
(*_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 11:16:01 +08:00
|
|
|
(_("%B: warning: illegal symbol index %ld in relocs"),
|
|
|
|
abfd, reloc->r_symndx);
|
2000-04-08 01:06:58 +08:00
|
|
|
relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
|
|
|
ptr = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
relent->sym_ptr_ptr = (symbols
|
|
|
|
+ obj_convert (abfd)[reloc->r_symndx]);
|
|
|
|
ptr = *(relent->sym_ptr_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
relent->sym_ptr_ptr = section->symbol_ptr_ptr;
|
|
|
|
ptr = *(relent->sym_ptr_ptr);
|
|
|
|
}
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
/* The symbols definitions that we have read in have been
|
|
|
|
relocated as if their sections started at 0. But the offsets
|
|
|
|
refering to the symbols in the raw data have not been
|
|
|
|
modified, so we have to have a negative addend to compensate.
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
Note that symbols which used to be common must be left alone. */
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
/* Calculate any reloc addend by looking at the symbol. */
|
2000-04-08 01:06:58 +08:00
|
|
|
CALC_ADDEND (abfd, ptr, *reloc, relent);
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2000-04-08 01:06:58 +08:00
|
|
|
relent->address -= section->vma;
|
|
|
|
/* !! relent->section = (asection *) NULL;*/
|
2000-11-16 08:54:12 +08:00
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
/* Fill in the relent->howto field from reloc->r_type. */
|
2000-04-08 01:06:58 +08:00
|
|
|
tic54x_lookup_howto (relent, reloc);
|
|
|
|
}
|
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
/* TI COFF v0, DOS tools (little-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff0_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff0-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_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 */
|
|
|
|
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format */
|
|
|
|
bfd_generic_archive_p, _bfd_dummy_target},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
NULL,
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
& ticoff0_swap_table
|
2001-08-24 01:05:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* TI COFF v0, SPARC tools (big-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff0_beh_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff0-beh-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_BIG, /* header byte order is big */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32,
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* 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},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
& tic54x_coff0_vec,
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
& ticoff0_swap_table
|
2001-08-24 01:05:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* TI COFF v1, DOS tools (little-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff1_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff1-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_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 */
|
|
|
|
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format */
|
|
|
|
bfd_generic_archive_p, _bfd_dummy_target},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
& tic54x_coff0_beh_vec,
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
& ticoff1_swap_table
|
2000-04-08 01:06:58 +08:00
|
|
|
};
|
|
|
|
|
2001-08-24 01:05:52 +08:00
|
|
|
/* TI COFF v1, SPARC tools (big-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff1_beh_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff1-beh-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_BIG, /* header byte order is big */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32,
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* 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},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
& tic54x_coff1_vec,
|
|
|
|
|
2012-07-13 22:22:50 +08:00
|
|
|
& ticoff1_swap_table
|
2001-08-24 01:05:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* TI COFF v2, TI DOS tools output (little-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff2_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff2-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_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 */
|
|
|
|
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format */
|
|
|
|
bfd_generic_archive_p, _bfd_dummy_target},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
& tic54x_coff1_beh_vec,
|
|
|
|
|
|
|
|
COFF_SWAP_TABLE
|
|
|
|
};
|
|
|
|
|
|
|
|
/* TI COFF v2, TI SPARC tools output (big-endian headers). */
|
2000-04-08 01:06:58 +08:00
|
|
|
const bfd_target tic54x_coff2_beh_vec =
|
2001-08-24 01:05:52 +08:00
|
|
|
{
|
|
|
|
"coff2-beh-c54x", /* name */
|
|
|
|
bfd_target_coff_flavour,
|
|
|
|
BFD_ENDIAN_LITTLE, /* data byte order is little */
|
|
|
|
BFD_ENDIAN_BIG, /* header byte order is big */
|
|
|
|
|
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT ),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
|
|
|
'_', /* leading symbol underscore */
|
|
|
|
'/', /* ar_pad_char */
|
|
|
|
15, /* ar_max_namelen */
|
* 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 09:26:05 +08:00
|
|
|
0, /* match priority. */
|
2001-08-24 01:05:52 +08:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32,
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* 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},
|
|
|
|
{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 (tic54x),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
& tic54x_coff2_vec,
|
|
|
|
|
|
|
|
COFF_SWAP_TABLE
|
|
|
|
};
|