2012-05-03 21:04:57 +08:00
|
|
|
/* Freescale XGATE-specific support for 32-bit ELF
|
2016-01-01 19:25:12 +08:00
|
|
|
Copyright (C) 2010-2016 Free Software Foundation, Inc.
|
2012-05-03 21:04:57 +08:00
|
|
|
Contributed by Sean Keys(skeys@ipdatasys.com)
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(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
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
|
|
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "bfdlink.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
#include "elf32-xgate.h"
|
|
|
|
#include "elf/xgate.h"
|
|
|
|
#include "opcode/xgate.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
/* Relocation functions. */
|
|
|
|
static reloc_howto_type *
|
|
|
|
bfd_elf32_bfd_reloc_type_lookup (bfd *, bfd_reloc_code_real_type);
|
|
|
|
static reloc_howto_type *
|
|
|
|
bfd_elf32_bfd_reloc_name_lookup (bfd *, const char *);
|
|
|
|
static void
|
|
|
|
xgate_info_to_howto_rel (bfd *, arelent *, Elf_Internal_Rela *);
|
|
|
|
static bfd_boolean
|
|
|
|
xgate_elf_set_mach_from_flags (bfd *);
|
|
|
|
static struct bfd_hash_entry *
|
|
|
|
stub_hash_newfunc (struct bfd_hash_entry *, struct bfd_hash_table *,
|
|
|
|
const char *);
|
|
|
|
static struct bfd_link_hash_table*
|
|
|
|
xgate_elf_bfd_link_hash_table_create (bfd *);
|
|
|
|
|
|
|
|
/* Use REL instead of RELA to save space */
|
|
|
|
#define USE_REL 1
|
|
|
|
|
|
|
|
static reloc_howto_type elf_xgate_howto_table[] =
|
|
|
|
{
|
|
|
|
/* This reloc does nothing. */
|
|
|
|
HOWTO (R_XGATE_NONE, /* type */
|
|
|
|
0, /* rightshift */
|
2015-01-19 08:06:26 +08:00
|
|
|
3, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
0, /* bitsize */
|
2012-05-03 21:04:57 +08:00
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont,/* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_NONE", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 8 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_8, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
0, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
8, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_8", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 8 bit PC-rel relocation. */
|
|
|
|
HOWTO (R_XGATE_PCREL_8, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
0, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
8, /* bitsize */
|
|
|
|
TRUE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_PCREL_8", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 16 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_16, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont /*bitfield */, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_16", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
2012-10-30 05:28:09 +08:00
|
|
|
0xffff, /* src_mask */
|
|
|
|
0xffff, /* dst_mask */
|
2012-05-03 21:04:57 +08:00
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 32 bit absolute relocation. This one is never used for the
|
|
|
|
code relocation. It's used by gas for -gstabs generation. */
|
|
|
|
HOWTO (R_XGATE_32, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
32, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_32", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
0xffffffff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 16 bit PC-rel relocation. */
|
|
|
|
HOWTO (R_XGATE_PCREL_16, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
TRUE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_PCREL_16", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
0xffff, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* GNU extension to record C++ vtable hierarchy. */
|
|
|
|
HOWTO (R_XGATE_GNU_VTINHERIT, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
0, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
NULL, /* special_function */
|
|
|
|
"R_XGATE_GNU_VTINHERIT", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* GNU extension to record C++ vtable member usage. */
|
|
|
|
HOWTO (R_XGATE_GNU_VTENTRY, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
0, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
_bfd_elf_rel_vtable_reloc_fn, /* special_function */
|
|
|
|
"R_XGATE_GNU_VTENTRY", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 24 bit relocation. */
|
|
|
|
HOWTO (R_XGATE_24, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM8_LO", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 16-bit low relocation. */
|
|
|
|
HOWTO (R_XGATE_LO16, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM8_HI", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A page relocation. */
|
|
|
|
HOWTO (R_XGATE_GPAGE, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
0, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
8, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
xgate_elf_special_reloc,/* special_function */
|
|
|
|
"R_XGATE_GPAGE", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 9 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_PCREL_9, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
9, /* bitsize */
|
|
|
|
TRUE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_PCREL_9", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
0xffff, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 8 bit absolute relocation (upper address). */
|
|
|
|
HOWTO (R_XGATE_PCREL_10, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
0, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
10, /* bitsize */
|
|
|
|
TRUE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_PCREL_10", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 8 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_IMM8_LO, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM8_LO", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0xffff, /* src_mask */
|
|
|
|
0xffff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 16 bit absolute relocation (upper address). */
|
|
|
|
HOWTO (R_XGATE_IMM8_HI, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM8_HI", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 3 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_IMM3, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM3", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 4 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_IMM4, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM4", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* A 5 bit absolute relocation. */
|
|
|
|
HOWTO (R_XGATE_IMM5, /* type */
|
|
|
|
8, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
16, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_XGATE_IMM5", /* name */
|
|
|
|
FALSE, /* partial_inplace */
|
|
|
|
0x00ff, /* src_mask */
|
|
|
|
0x00ff, /* dst_mask */
|
|
|
|
FALSE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* Mark beginning of a jump instruction (any form). */
|
|
|
|
HOWTO (R_XGATE_RL_JUMP, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
0, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
xgate_elf_ignore_reloc, /* special_function */
|
|
|
|
"R_XGATE_RL_JUMP", /* name */
|
|
|
|
TRUE, /* partial_inplace */
|
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
|
|
|
|
/* Mark beginning of Gcc relaxation group instruction. */
|
|
|
|
HOWTO (R_XGATE_RL_GROUP, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
1, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
0, /* bitsize */
|
|
|
|
FALSE, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
xgate_elf_ignore_reloc, /* special_function */
|
|
|
|
"R_XGATE_RL_GROUP", /* name */
|
|
|
|
TRUE, /* partial_inplace */
|
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
TRUE), /* pcrel_offset */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Map BFD reloc types to XGATE ELF reloc types. */
|
|
|
|
|
|
|
|
struct xgate_reloc_map
|
|
|
|
{
|
|
|
|
bfd_reloc_code_real_type bfd_reloc_val;
|
|
|
|
unsigned char elf_reloc_val;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct xgate_reloc_map xgate_reloc_map[] =
|
|
|
|
{
|
|
|
|
{BFD_RELOC_NONE, R_XGATE_NONE},
|
|
|
|
{BFD_RELOC_8, R_XGATE_8},
|
|
|
|
{BFD_RELOC_8_PCREL, R_XGATE_PCREL_8},
|
|
|
|
{BFD_RELOC_16_PCREL, R_XGATE_PCREL_16},
|
|
|
|
{BFD_RELOC_16, R_XGATE_16},
|
|
|
|
{BFD_RELOC_32, R_XGATE_32},
|
|
|
|
|
|
|
|
{BFD_RELOC_VTABLE_INHERIT, R_XGATE_GNU_VTINHERIT},
|
|
|
|
{BFD_RELOC_VTABLE_ENTRY, R_XGATE_GNU_VTENTRY},
|
|
|
|
|
|
|
|
{BFD_RELOC_XGATE_LO16, R_XGATE_LO16},
|
|
|
|
{BFD_RELOC_XGATE_GPAGE, R_XGATE_GPAGE},
|
|
|
|
{BFD_RELOC_XGATE_24, R_XGATE_24},
|
|
|
|
{BFD_RELOC_XGATE_PCREL_9, R_XGATE_PCREL_9},
|
|
|
|
{BFD_RELOC_XGATE_PCREL_10, R_XGATE_PCREL_10},
|
|
|
|
{BFD_RELOC_XGATE_IMM8_LO, R_XGATE_IMM8_LO},
|
|
|
|
{BFD_RELOC_XGATE_IMM8_HI, R_XGATE_IMM8_HI},
|
|
|
|
{BFD_RELOC_XGATE_IMM3, R_XGATE_IMM3},
|
|
|
|
{BFD_RELOC_XGATE_IMM4, R_XGATE_IMM4},
|
|
|
|
{BFD_RELOC_XGATE_IMM5, R_XGATE_IMM5},
|
|
|
|
|
|
|
|
{BFD_RELOC_XGATE_RL_JUMP, R_XGATE_RL_JUMP},
|
|
|
|
{BFD_RELOC_XGATE_RL_GROUP, R_XGATE_RL_GROUP},
|
|
|
|
};
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
bfd_elf32_bfd_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd_reloc_code_real_type code)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (xgate_reloc_map); i++)
|
|
|
|
if (xgate_reloc_map[i].bfd_reloc_val == code)
|
|
|
|
return &elf_xgate_howto_table[xgate_reloc_map[i].elf_reloc_val];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
bfd_elf32_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED, const char *r_name)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (elf_xgate_howto_table); i++)
|
|
|
|
if (elf_xgate_howto_table[i].name != NULL
|
|
|
|
&& strcasecmp (elf_xgate_howto_table[i].name, r_name) == 0)
|
|
|
|
return &elf_xgate_howto_table[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the howto pointer for an XGATE ELF reloc. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
xgate_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
arelent *cache_ptr,
|
|
|
|
Elf_Internal_Rela *dst)
|
|
|
|
{
|
|
|
|
unsigned int r_type;
|
|
|
|
|
|
|
|
r_type = ELF32_R_TYPE (dst->r_info);
|
2014-12-23 04:59:00 +08:00
|
|
|
if (r_type >= (unsigned int) R_XGATE_max)
|
|
|
|
{
|
2015-02-03 22:34:54 +08:00
|
|
|
_bfd_error_handler (_("%B: invalid XGate reloc number: %d"), abfd, r_type);
|
2014-12-23 04:59:00 +08:00
|
|
|
r_type = 0;
|
|
|
|
}
|
2012-05-03 21:04:57 +08:00
|
|
|
cache_ptr->howto = &elf_xgate_howto_table[r_type];
|
|
|
|
}
|
|
|
|
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
/* Destroy an XGATE ELF linker hash table. */
|
2012-05-03 21:04:57 +08:00
|
|
|
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
static void
|
|
|
|
xgate_elf_bfd_link_hash_table_free (bfd *obfd)
|
2012-05-03 21:04:57 +08:00
|
|
|
{
|
|
|
|
struct xgate_elf_link_hash_table *ret =
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
(struct xgate_elf_link_hash_table *) obfd->link.hash;
|
2012-05-03 21:04:57 +08:00
|
|
|
|
|
|
|
bfd_hash_table_free (ret->stub_hash_table);
|
|
|
|
free (ret->stub_hash_table);
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
_bfd_elf_link_hash_table_free (obfd);
|
2012-05-03 21:04:57 +08:00
|
|
|
}
|
|
|
|
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
/* Create an XGATE ELF linker hash table. */
|
2012-05-03 21:04:57 +08:00
|
|
|
|
|
|
|
static struct bfd_link_hash_table*
|
|
|
|
xgate_elf_bfd_link_hash_table_create (bfd *abfd)
|
|
|
|
{
|
|
|
|
struct xgate_elf_link_hash_table *ret;
|
|
|
|
bfd_size_type amt = sizeof(struct xgate_elf_link_hash_table);
|
|
|
|
|
2013-02-10 12:36:33 +08:00
|
|
|
ret = (struct xgate_elf_link_hash_table *) bfd_zmalloc (amt);
|
2012-05-03 21:04:57 +08:00
|
|
|
if (ret == (struct xgate_elf_link_hash_table *) NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
|
|
|
|
_bfd_elf_link_hash_newfunc, sizeof(struct elf_link_hash_entry),
|
|
|
|
XGATE_ELF_DATA))
|
|
|
|
{
|
|
|
|
free (ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init the stub hash table too. */
|
|
|
|
amt = sizeof(struct bfd_hash_table);
|
2013-02-10 12:36:33 +08:00
|
|
|
ret->stub_hash_table = (struct bfd_hash_table*) bfd_zmalloc (amt);
|
2012-05-03 21:04:57 +08:00
|
|
|
if (ret->stub_hash_table == NULL)
|
|
|
|
{
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
_bfd_elf_link_hash_table_free (abfd);
|
2012-05-03 21:04:57 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bfd_hash_table_init (ret->stub_hash_table, stub_hash_newfunc,
|
|
|
|
sizeof(struct elf32_xgate_stub_hash_entry)))
|
2013-02-10 12:36:33 +08:00
|
|
|
{
|
|
|
|
free (ret->stub_hash_table);
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
_bfd_elf_link_hash_table_free (abfd);
|
2013-02-10 12:36:33 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 17:41:39 +08:00
|
|
|
ret->root.root.hash_table_free = xgate_elf_bfd_link_hash_table_free;
|
2012-05-03 21:04:57 +08:00
|
|
|
|
|
|
|
return &ret->root.root;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
xgate_elf_set_mach_from_flags (bfd *abfd ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Specific sections:
|
|
|
|
- The .page0 is a data section that is mapped in [0x0000..0x00FF].
|
|
|
|
Page0 accesses are faster on the M68HC12.
|
|
|
|
- The .vectors is the section that represents the interrupt
|
|
|
|
vectors.
|
|
|
|
- The .xgate section is starts in 0xE08800 or as xgate sees it 0x0800. */
|
|
|
|
static const struct bfd_elf_special_section elf32_xgate_special_sections[] =
|
|
|
|
{
|
|
|
|
{ STRING_COMMA_LEN (".eeprom"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
{ STRING_COMMA_LEN (".page0"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
{ STRING_COMMA_LEN (".softregs"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
{ STRING_COMMA_LEN (".vectors"), 0, SHT_PROGBITS, SHF_ALLOC },
|
|
|
|
/*{ STRING_COMMA_LEN (".xgate"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
TODO finish this implementation */
|
|
|
|
{ NULL, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct xgate_scan_param
|
|
|
|
{
|
|
|
|
struct xgate_page_info* pinfo;
|
|
|
|
bfd_boolean use_memory_banks;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Assorted hash table functions. */
|
|
|
|
|
|
|
|
/* Initialize an entry in the stub hash table. */
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
|
|
|
stub_hash_newfunc (struct bfd_hash_entry *entry,
|
|
|
|
struct bfd_hash_table *table ATTRIBUTE_UNUSED,
|
|
|
|
const char *string ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hook called by the linker routine which adds symbols from an object
|
|
|
|
file. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
elf32_xgate_add_symbol_hook (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED,
|
2012-06-29 05:36:35 +08:00
|
|
|
Elf_Internal_Sym *sym,
|
2012-05-03 21:04:57 +08:00
|
|
|
const char **namep ATTRIBUTE_UNUSED,
|
|
|
|
flagword *flagsp ATTRIBUTE_UNUSED,
|
|
|
|
asection **secp ATTRIBUTE_UNUSED,
|
|
|
|
bfd_vma *valp ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2012-06-29 05:36:35 +08:00
|
|
|
/* For some reason the st_target_internal value is not retained
|
|
|
|
after xgate_frob_symbol is called, hence this temp hack. */
|
|
|
|
sym->st_target_internal = 1;
|
2012-05-03 21:04:57 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* External entry points for sizing and building linker stubs. */
|
|
|
|
|
|
|
|
/* Set up various things so that we can make a list of input sections
|
|
|
|
for each output section included in the link. Returns -1 on error,
|
|
|
|
0 when no stubs will be needed, and 1 on success. */
|
|
|
|
|
|
|
|
int
|
|
|
|
elf32_xgate_setup_section_lists (bfd *output_bfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine and set the size of the stub section for a final link.
|
|
|
|
The basic idea here is to examine all the relocations looking for
|
|
|
|
PC-relative calls to a target that is unreachable with any "9-bit PC-REL"
|
|
|
|
instruction. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
elf32_xgate_size_stubs (bfd *output_bfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd *stub_bfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED,
|
|
|
|
asection * (*add_stub_section) (const char*, asection*) ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Build all the stubs associated with the current output file. The
|
|
|
|
stubs are kept in a hash table attached to the main linker hash
|
|
|
|
table. This function is called via xgateelf_finish in the
|
|
|
|
linker. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
elf32_xgate_build_stubs (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xgate_elf_get_bank_parameters (struct bfd_link_info *info ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is used for relocs which are only used for relaxing,
|
|
|
|
which the linker should otherwise ignore. */
|
|
|
|
|
|
|
|
bfd_reloc_status_type
|
|
|
|
xgate_elf_ignore_reloc (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)
|
|
|
|
{
|
|
|
|
if (output_bfd != NULL)
|
|
|
|
reloc_entry->address += input_section->output_offset;
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_reloc_status_type
|
|
|
|
xgate_elf_special_reloc (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
arelent *reloc_entry ATTRIBUTE_UNUSED,
|
|
|
|
asymbol *symbol ATTRIBUTE_UNUSED,
|
|
|
|
void *data ATTRIBUTE_UNUSED,
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED,
|
|
|
|
bfd *output_bfd ATTRIBUTE_UNUSED,
|
|
|
|
char **error_message ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look through the relocs for a section during the first phase.
|
|
|
|
Since we don't do .gots or .plts, we just need to consider the
|
|
|
|
virtual table relocs for gc. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
elf32_xgate_check_relocs (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec ATTRIBUTE_UNUSED,
|
|
|
|
const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Relocate a XGATE/S12x ELF section. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
elf32_xgate_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED,
|
|
|
|
bfd *input_bfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED,
|
|
|
|
bfd_byte *contents ATTRIBUTE_UNUSED,
|
|
|
|
Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED,
|
|
|
|
Elf_Internal_Sym *local_syms ATTRIBUTE_UNUSED,
|
|
|
|
asection **local_sections ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set and control ELF flags in ELF header. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
_bfd_xgate_elf_set_private_flags (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
flagword flags ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
_bfd_xgate_elf_print_private_bfd_data (bfd *abfd, void *ptr)
|
|
|
|
{
|
|
|
|
FILE *file = (FILE *) ptr;
|
|
|
|
|
|
|
|
BFD_ASSERT (abfd != NULL && ptr != NULL);
|
|
|
|
|
|
|
|
/* Print normal ELF private data. */
|
|
|
|
_bfd_elf_print_private_bfd_data (abfd, ptr);
|
|
|
|
|
|
|
|
/* xgettext:c-format */
|
|
|
|
fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
|
|
|
|
|
|
|
|
if (elf_elfheader (abfd)->e_flags & E_XGATE_I32)
|
|
|
|
fprintf (file, _("[abi=32-bit int, "));
|
|
|
|
else
|
|
|
|
fprintf (file, _("[abi=16-bit int, "));
|
|
|
|
|
|
|
|
if (elf_elfheader (abfd)->e_flags & E_XGATE_F64)
|
|
|
|
fprintf (file, _("64-bit double, "));
|
|
|
|
else
|
|
|
|
fprintf (file, _("32-bit double, "));
|
|
|
|
if (elf_elfheader (abfd)->e_flags & EF_XGATE_MACH)
|
|
|
|
fprintf (file, _("cpu=XGATE]"));
|
|
|
|
else
|
|
|
|
fprintf (file, _("error reading cpu type from elf private data"));
|
|
|
|
fputc ('\n', file);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
elf32_xgate_post_process_headers (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ELF_ARCH bfd_arch_xgate
|
|
|
|
#define ELF_MACHINE_CODE EM_XGATE
|
|
|
|
#define ELF_TARGET_ID XGATE_ELF_DATA
|
|
|
|
|
|
|
|
#define ELF_MAXPAGESIZE 0x1000
|
|
|
|
|
bfd target vector rationalisation
This renames the bfd targets to <cpu>_<format>_<other>_<endian>_vec.
So for example, bfd_elf32_ntradlittlemips_vec becomes
mips_elf32_ntrad_le_vec and hp300bsd_vec becomes m68k_aout_hp300bsd_vec.
bfd/
* aix386-core.c, * aout-adobe.c, * aout-arm.c, * aout-ns32k.c,
* aout-sparcle.c, * aout0.c, * aoutx.h, * armnetbsd.c, * bout.c,
* cf-i386lynx.c, * cf-sparclynx.c, * cisco-core.c, * coff-alpha.c,
* coff-apollo.c, * coff-arm.c, * coff-aux.c, * coff-go32.c,
* coff-h8300.c, * coff-h8500.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-m68k.c, * coff-m88k.c, * coff-mips.c,
* coff-rs6000.c, * coff-sh.c, * coff-sparc.c, * coff-stgo32.c,
* coff-svm68k.c, * coff-tic80.c, * coff-u68k.c, * coff-w65.c,
* coff-we32k.c, * coff-x86_64.c, * coff-z80.c, * coff-z8k.c,
* coff64-rs6000.c, * config.bfd, * configure.com, * configure.in,
* demo64.c, * elf-m10200.c, * elf-m10300.c, * elf32-am33lin.c,
* elf32-arc.c, * elf32-arm.c, * elf32-avr.c, * elf32-bfin.c,
* elf32-cr16.c, * elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c,
* elf32-d10v.c, * elf32-d30v.c, * elf32-dlx.c, * elf32-epiphany.c,
* elf32-fr30.c, * elf32-frv.c, * elf32-gen.c, * elf32-h8300.c,
* elf32-hppa.c, * elf32-i370.c, * elf32-i386.c, * elf32-i860.c,
* elf32-i960.c, * elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c,
* elf32-m32c.c, * elf32-m32r.c, * elf32-m68hc11.c, * elf32-m68hc12.c,
* elf32-m68k.c, * elf32-m88k.c, * elf32-mcore.c, * elf32-mep.c,
* elf32-metag.c, * elf32-microblaze.c, * elf32-mips.c, * elf32-moxie.c,
* elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-pj.c, * elf32-ppc.c, * elf32-rl78.c,
* elf32-rx.c, * elf32-s390.c, * elf32-score.c, * elf32-sh-symbian.c,
* elf32-sh.c, * elf32-sh64.c, * elf32-sparc.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilegx.c, * elf32-tilepro.c, * elf32-v850.c,
* elf32-vax.c, * elf32-xc16x.c, * elf32-xgate.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-gen.c, * elf64-hppa.c,
* elf64-ia64-vms.c, * elf64-mips.c, * elf64-mmix.c, * elf64-ppc.c,
* elf64-s390.c, * elf64-sh64.c, * elf64-sparc.c, * elf64-tilegx.c,
* elf64-x86-64.c, * elfn32-mips.c, * elfnn-aarch64.c, * elfnn-ia64.c,
* epoc-pe-arm.c, * epoc-pei-arm.c, * hp300bsd.c, * hp300hpux.c,
* hppabsd-core.c, * hpux-core.c, * i386aout.c, * i386bsd.c,
* i386dynix.c, * i386freebsd.c, * i386linux.c, * i386lynx.c,
* i386mach3.c, * i386msdos.c, * i386netbsd.c, * i386os9k.c,
* irix-core.c, * m68k4knetbsd.c, * m68klinux.c, * m68knetbsd.c,
* m88kmach3.c, * m88kopenbsd.c, * mach-o-i386.c, * mach-o-x86-64.c,
* makefile.vms, * mipsbsd.c, * mmo.c, * netbsd-core.c, * newsos3.c,
* nlm32-alpha.c, * nlm32-i386.c, * nlm32-ppc.c, * nlm32-sparc.c,
* ns32knetbsd.c, * osf-core.c, * pc532-mach.c, * pe-arm-wince.c,
* pe-arm.c, * pe-i386.c, * pe-mcore.c, * pe-mips.c, * pe-ppc.c,
* pe-sh.c, * pe-x86_64.c, * pei-arm-wince.c, * pei-arm.c,
* pei-i386.c, * pei-ia64.c, * pei-mcore.c, * pei-mips.c, * pei-ppc.c,
* pei-sh.c, * pei-x86_64.c, * ppcboot.c, * ptrace-core.c, * riscix.c,
* sco5-core.c, * som.c, * sparclinux.c, * sparclynx.c,
* sparcnetbsd.c, * sunos.c, * targets.c, * trad-core.c,
* vax1knetbsd.c, * vaxbsd.c, * vaxnetbsd.c, * versados.c,
* vms-alpha.c, * vms-lib.c: Rename bfd targets to
<cpu>_<format>_<other>_<endian>_vec. Adjust associated MY macros
on aout targets.
* configure: Regenerate.
binutils/
* emul_aix.c: Update bfd target vector naming.
* testsuite/binutils-all/objcopy.exp: Likewise.
ld/
* emultempl/metagelf.em: Update bfd target vector naming.
* emultempl/nios2elf.em: Likewise.
* emultempl/spuelf.em: Likewise.
* emultempl/tic6xdsbt.em: Likewise.
2014-05-02 18:39:40 +08:00
|
|
|
#define TARGET_BIG_SYM xgate_elf32_vec
|
2012-05-03 21:04:57 +08:00
|
|
|
#define TARGET_BIG_NAME "elf32-xgate"
|
|
|
|
|
|
|
|
#define elf_info_to_howto 0
|
|
|
|
#define elf_info_to_howto_rel xgate_info_to_howto_rel
|
|
|
|
#define elf_backend_check_relocs elf32_xgate_check_relocs
|
|
|
|
#define elf_backend_relocate_section elf32_xgate_relocate_section
|
|
|
|
#define elf_backend_object_p xgate_elf_set_mach_from_flags
|
|
|
|
#define elf_backend_final_write_processing 0
|
|
|
|
#define elf_backend_can_gc_sections 1
|
|
|
|
#define elf_backend_special_sections elf32_xgate_special_sections
|
|
|
|
#define elf_backend_post_process_headers elf32_xgate_post_process_headers
|
|
|
|
#define elf_backend_add_symbol_hook elf32_xgate_add_symbol_hook
|
|
|
|
|
|
|
|
#define bfd_elf32_bfd_link_hash_table_create xgate_elf_bfd_link_hash_table_create
|
|
|
|
#define bfd_elf32_bfd_set_private_flags _bfd_xgate_elf_set_private_flags
|
|
|
|
#define bfd_elf32_bfd_print_private_bfd_data _bfd_xgate_elf_print_private_bfd_data
|
|
|
|
|
|
|
|
#define xgate_stub_hash_lookup(table, string, create, copy) \
|
|
|
|
((struct elf32_xgate_stub_hash_entry *) \
|
|
|
|
bfd_hash_lookup ((table), (string), (create), (copy)))
|
|
|
|
|
|
|
|
#include "elf32-target.h"
|