2002-08-01 20:29:09 +02:00
|
|
|
/* Ubicom IP2xxx specific support for 32-bit ELF
|
2017-01-02 04:36:43 +01:00
|
|
|
Copyright (C) 2000-2017 Free Software Foundation, Inc.
|
2002-07-17 16:15:52 +02: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 16:26:43 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-07-17 16:15:52 +02: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-07-01 13:16:33 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
2002-07-17 16:15:52 +02:00
|
|
|
#include "libbfd.h"
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
#include "elf/ip2k.h"
|
|
|
|
|
|
|
|
/* Struct used to pass miscellaneous paramaters which
|
|
|
|
helps to avoid overly long parameter lists. */
|
|
|
|
struct misc
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr * symtab_hdr;
|
|
|
|
Elf_Internal_Rela * irelbase;
|
|
|
|
bfd_byte * contents;
|
2002-08-01 20:29:09 +02:00
|
|
|
Elf_Internal_Sym * isymbuf;
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
struct ip2k_opcode
|
|
|
|
{
|
|
|
|
unsigned short opcode;
|
|
|
|
unsigned short mask;
|
|
|
|
};
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static bfd_boolean ip2k_relaxed = FALSE;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_page_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0x0010, 0xFFF8}, /* Page. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_PAGE_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_page_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_jmp_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0xE000, 0xE000}, /* Jmp. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_JMP_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_jmp_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_snc_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0xA00B, 0xFFFF}, /* Snc. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_SNC_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_snc_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_inc_1sp_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0x2B81, 0xFFFF}, /* Inc 1(SP). */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_INC_1SP_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_inc_1sp_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_add_2sp_w_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0x1F82, 0xFFFF}, /* Add 2(SP),w. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_ADD_2SP_W_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_add_2sp_w_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_add_w_wreg_opcode[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0x1C0A, 0xFFFF}, /* Add w,wreg. */
|
|
|
|
{0x1E0A, 0xFFFF}, /* Add wreg,w. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_ADD_W_WREG_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_add_w_wreg_opcode)
|
|
|
|
|
|
|
|
static const struct ip2k_opcode ip2k_add_pcl_w_opcode[] =
|
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
{0x1E09, 0xFFFF}, /* Add pcl,w. */
|
2003-01-03 09:21:43 +01:00
|
|
|
{0x0000, 0x0000},
|
|
|
|
};
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_ADD_PCL_W_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_add_pcl_w_opcode)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static const struct ip2k_opcode ip2k_skip_opcodes[] =
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
{0xB000, 0xF000}, /* sb */
|
|
|
|
{0xA000, 0xF000}, /* snb */
|
|
|
|
{0x7600, 0xFE00}, /* cse/csne #lit */
|
|
|
|
{0x5800, 0xFC00}, /* incsnz */
|
|
|
|
{0x4C00, 0xFC00}, /* decsnz */
|
|
|
|
{0x4000, 0xFC00}, /* cse/csne */
|
|
|
|
{0x3C00, 0xFC00}, /* incsz */
|
|
|
|
{0x2C00, 0xFC00}, /* decsz */
|
|
|
|
{0x0000, 0x0000},
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
#define IS_SKIP_OPCODE(code) \
|
|
|
|
ip2k_is_opcode (code, ip2k_skip_opcodes)
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Relocation tables. */
|
2002-07-17 16:15:52 +02:00
|
|
|
static reloc_howto_type ip2k_elf_howto_table [] =
|
|
|
|
{
|
|
|
|
#define IP2K_HOWTO(t,rs,s,bs,pr,bp,name,sm,dm) \
|
|
|
|
HOWTO(t, /* type */ \
|
|
|
|
rs, /* rightshift */ \
|
|
|
|
s, /* size (0 = byte, 1 = short, 2 = long) */ \
|
|
|
|
bs, /* bitsize */ \
|
|
|
|
pr, /* pc_relative */ \
|
|
|
|
bp, /* bitpos */ \
|
|
|
|
complain_overflow_dont,/* complain_on_overflow */ \
|
|
|
|
bfd_elf_generic_reloc,/* special_function */ \
|
|
|
|
name, /* name */ \
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* partial_inplace */ \
|
2002-07-17 16:15:52 +02:00
|
|
|
sm, /* src_mask */ \
|
|
|
|
dm, /* dst_mask */ \
|
|
|
|
pr) /* pcrel_offset */
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* This reloc does nothing. */
|
2015-01-19 01:06:26 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_NONE, 0,3,0, FALSE, 0, "R_IP2K_NONE", 0, 0),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 16 bit absolute relocation. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_16, 0,1,16, FALSE, 0, "R_IP2K_16", 0, 0xffff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 32 bit absolute relocation. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_32, 0,2,32, FALSE, 0, "R_IP2K_32", 0, 0xffffffff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 8-bit data relocation for the FR9 field. Ninth bit is computed specially. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_FR9, 0,1,9, FALSE, 0, "R_IP2K_FR9", 0, 0x00ff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 4-bit data relocation. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_BANK, 8,1,4, FALSE, 0, "R_IP2K_BANK", 0, 0x000f),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 13-bit insn relocation - word address => right-shift 1 bit extra. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_ADDR16CJP, 1,1,13, FALSE, 0, "R_IP2K_ADDR16CJP", 0, 0x1fff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 3-bit insn relocation - word address => right-shift 1 bit extra. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_PAGE3, 14,1,3, FALSE, 0, "R_IP2K_PAGE3", 0, 0x0007),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* Two 8-bit data relocations. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_LO8DATA, 0,1,8, FALSE, 0, "R_IP2K_LO8DATA", 0, 0x00ff),
|
|
|
|
IP2K_HOWTO (R_IP2K_HI8DATA, 8,1,8, FALSE, 0, "R_IP2K_HI8DATA", 0, 0x00ff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* Two 8-bit insn relocations. word address => right-shift 1 bit extra. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_LO8INSN, 1,1,8, FALSE, 0, "R_IP2K_LO8INSN", 0, 0x00ff),
|
|
|
|
IP2K_HOWTO (R_IP2K_HI8INSN, 9,1,8, FALSE, 0, "R_IP2K_HI8INSN", 0, 0x00ff),
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
/* Special 1 bit relocation for SKIP instructions. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_PC_SKIP, 1,1,1, FALSE, 12, "R_IP2K_PC_SKIP", 0xfffe, 0x1000),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* 16 bit word address. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_TEXT, 1,1,16, FALSE, 0, "R_IP2K_TEXT", 0, 0xffff),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* A 7-bit offset relocation for the FR9 field. Eigth and ninth bit comes from insn. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_FR_OFFSET, 0,1,9, FALSE, 0, "R_IP2K_FR_OFFSET", 0x180, 0x007f),
|
2002-07-17 16:15:52 +02:00
|
|
|
/* Bits 23:16 of an address. */
|
2002-11-30 09:39:46 +01:00
|
|
|
IP2K_HOWTO (R_IP2K_EX8DATA, 16,1,8, FALSE, 0, "R_IP2K_EX8DATA", 0, 0x00ff),
|
2002-07-17 16:15:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Map BFD reloc types to IP2K ELF reloc types. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
static reloc_howto_type *
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd_reloc_code_real_type code)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
|
|
|
/* Note that the ip2k_elf_howto_table is indxed by the R_
|
|
|
|
constants. Thus, the order that the howto records appear in the
|
|
|
|
table *must* match the order of the relocation types defined in
|
2003-01-03 09:21:43 +01:00
|
|
|
include/elf/ip2k.h. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case BFD_RELOC_NONE:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_NONE];
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_16];
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_32];
|
|
|
|
case BFD_RELOC_IP2K_FR9:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_FR9];
|
|
|
|
case BFD_RELOC_IP2K_BANK:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_BANK];
|
|
|
|
case BFD_RELOC_IP2K_ADDR16CJP:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_ADDR16CJP];
|
|
|
|
case BFD_RELOC_IP2K_PAGE3:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_PAGE3];
|
|
|
|
case BFD_RELOC_IP2K_LO8DATA:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_LO8DATA];
|
|
|
|
case BFD_RELOC_IP2K_HI8DATA:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_HI8DATA];
|
|
|
|
case BFD_RELOC_IP2K_LO8INSN:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_LO8INSN];
|
|
|
|
case BFD_RELOC_IP2K_HI8INSN:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_HI8INSN];
|
|
|
|
case BFD_RELOC_IP2K_PC_SKIP:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_PC_SKIP];
|
|
|
|
case BFD_RELOC_IP2K_TEXT:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_TEXT];
|
|
|
|
case BFD_RELOC_IP2K_FR_OFFSET:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_FR_OFFSET];
|
|
|
|
case BFD_RELOC_IP2K_EX8DATA:
|
|
|
|
return &ip2k_elf_howto_table[ (int) R_IP2K_EX8DATA];
|
|
|
|
default:
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Pacify gcc -Wall. */
|
2002-07-17 16:15:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-03-26 14:23:03 +02:00
|
|
|
static reloc_howto_type *
|
|
|
|
ip2k_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED, const char *r_name)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < sizeof (ip2k_elf_howto_table) / sizeof (ip2k_elf_howto_table[0]);
|
|
|
|
i++)
|
|
|
|
if (ip2k_elf_howto_table[i].name != NULL
|
|
|
|
&& strcasecmp (ip2k_elf_howto_table[i].name, r_name) == 0)
|
|
|
|
return &ip2k_elf_howto_table[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_get_mem (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd_byte *addr,
|
|
|
|
int length,
|
|
|
|
bfd_byte *ptr)
|
2003-01-03 09:21:43 +01:00
|
|
|
{
|
|
|
|
while (length --)
|
|
|
|
* ptr ++ = bfd_get_8 (abfd, addr ++);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_is_opcode (bfd_byte *code, const struct ip2k_opcode *opcodes)
|
2003-01-03 09:21:43 +01:00
|
|
|
{
|
|
|
|
unsigned short insn = (code[0] << 8) | code[1];
|
|
|
|
|
|
|
|
while (opcodes->mask != 0)
|
|
|
|
{
|
|
|
|
if ((insn & opcodes->mask) == opcodes->opcode)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
opcodes ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PAGENO(ABSADDR) ((ABSADDR) & 0xFFFFC000)
|
2002-07-17 16:15:52 +02:00
|
|
|
#define BASEADDR(SEC) ((SEC)->output_section->vma + (SEC)->output_offset)
|
|
|
|
|
|
|
|
#define UNDEFINED_SYMBOL (~(bfd_vma)0)
|
|
|
|
|
|
|
|
/* Return the value of the symbol associated with the relocation IREL. */
|
|
|
|
|
|
|
|
static bfd_vma
|
2005-07-01 13:16:33 +02:00
|
|
|
symbol_value (bfd *abfd,
|
|
|
|
Elf_Internal_Shdr *symtab_hdr,
|
|
|
|
Elf_Internal_Sym *isymbuf,
|
|
|
|
Elf_Internal_Rela *irel)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
|
|
|
if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
|
|
|
|
{
|
2002-08-01 20:29:09 +02:00
|
|
|
Elf_Internal_Sym *isym;
|
2002-07-17 16:15:52 +02:00
|
|
|
asection *sym_sec;
|
|
|
|
|
2002-08-01 20:29:09 +02:00
|
|
|
isym = isymbuf + ELF32_R_SYM (irel->r_info);
|
|
|
|
if (isym->st_shndx == SHN_UNDEF)
|
2002-07-17 16:15:52 +02:00
|
|
|
sym_sec = bfd_und_section_ptr;
|
2002-08-01 20:29:09 +02:00
|
|
|
else if (isym->st_shndx == SHN_ABS)
|
2002-07-17 16:15:52 +02:00
|
|
|
sym_sec = bfd_abs_section_ptr;
|
2002-08-01 20:29:09 +02:00
|
|
|
else if (isym->st_shndx == SHN_COMMON)
|
2002-07-17 16:15:52 +02:00
|
|
|
sym_sec = bfd_com_section_ptr;
|
|
|
|
else
|
2002-08-01 20:29:09 +02:00
|
|
|
sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2002-08-01 20:29:09 +02:00
|
|
|
return isym->st_value + BASEADDR (sym_sec);
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned long indx;
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
|
|
|
indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
|
|
|
|
h = elf_sym_hashes (abfd)[indx];
|
|
|
|
BFD_ASSERT (h != NULL);
|
|
|
|
|
|
|
|
if (h->root.type != bfd_link_hash_defined
|
|
|
|
&& h->root.type != bfd_link_hash_defweak)
|
|
|
|
return UNDEFINED_SYMBOL;
|
|
|
|
|
|
|
|
return (h->root.u.def.value + BASEADDR (h->root.u.def.section));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine if the instruction sequence matches that for
|
|
|
|
the prologue of a switch dispatch table with fewer than
|
|
|
|
128 entries.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
sc
|
|
|
|
page $nnn0
|
|
|
|
jmp $nnn0
|
|
|
|
add w,wreg
|
|
|
|
add pcl,w
|
|
|
|
addr=>
|
|
|
|
page $nnn1
|
|
|
|
jmp $nnn1
|
|
|
|
page $nnn2
|
|
|
|
jmp $nnn2
|
|
|
|
...
|
|
|
|
page $nnnN
|
|
|
|
jmp $nnnN
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
After relaxation.
|
|
|
|
sc
|
|
|
|
page $nnn0
|
|
|
|
jmp $nnn0
|
|
|
|
add pcl,w
|
|
|
|
addr=>
|
|
|
|
jmp $nnn1
|
|
|
|
jmp $nnn2
|
|
|
|
...
|
|
|
|
jmp $nnnN */
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static int
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_is_switch_table_128 (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
bfd_vma addr,
|
|
|
|
bfd_byte *contents)
|
2003-01-03 09:21:43 +01:00
|
|
|
{
|
|
|
|
bfd_byte code[4];
|
2009-12-11 14:42:17 +01:00
|
|
|
int table_index = 0;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Check current page-jmp. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
if (addr + 4 > sec->size)
|
2003-01-03 09:21:43 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
ip2k_get_mem (abfd, contents + addr, 4, code);
|
|
|
|
|
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
return -1;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Search back. */
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (addr < 4)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Check previous 2 instructions. */
|
|
|
|
ip2k_get_mem (abfd, contents + addr - 4, 4, code);
|
|
|
|
if ((IS_ADD_W_WREG_OPCODE (code + 0))
|
|
|
|
&& (IS_ADD_PCL_W_OPCODE (code + 2)))
|
2009-12-11 14:42:17 +01:00
|
|
|
return table_index;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
return -1;
|
|
|
|
|
2009-12-11 14:42:17 +01:00
|
|
|
table_index++;
|
2003-01-03 09:21:43 +01:00
|
|
|
addr -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
/* Determine if the instruction sequence matches that for
|
|
|
|
the prologue switch dispatch table with fewer than
|
|
|
|
256 entries but more than 127.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
Before relaxation.
|
|
|
|
push %lo8insn(label) ; Push address of table
|
|
|
|
push %hi8insn(label)
|
|
|
|
add w,wreg ; index*2 => offset
|
|
|
|
snc ; CARRY SET?
|
|
|
|
inc 1(sp) ; Propagate MSB into table address
|
|
|
|
add 2(sp),w ; Add low bits of offset to table address
|
|
|
|
snc ; and handle any carry-out
|
|
|
|
inc 1(sp)
|
|
|
|
addr=>
|
|
|
|
page __indjmp ; Do an indirect jump to that location
|
|
|
|
jmp __indjmp
|
|
|
|
label: ; case dispatch table starts here
|
|
|
|
page $nnn1
|
|
|
|
jmp $nnn1
|
|
|
|
page $nnn2
|
|
|
|
jmp $nnn2
|
|
|
|
...
|
|
|
|
page $nnnN
|
|
|
|
jmp $nnnN
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
After relaxation.
|
|
|
|
push %lo8insn(label) ; Push address of table
|
|
|
|
push %hi8insn(label)
|
|
|
|
add 2(sp),w ; Add low bits of offset to table address
|
|
|
|
snc ; and handle any carry-out
|
|
|
|
inc 1(sp)
|
|
|
|
addr=>
|
|
|
|
page __indjmp ; Do an indirect jump to that location
|
|
|
|
jmp __indjmp
|
|
|
|
label: ; case dispatch table starts here
|
|
|
|
jmp $nnn1
|
|
|
|
jmp $nnn2
|
|
|
|
...
|
|
|
|
jmp $nnnN */
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
static int
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_is_switch_table_256 (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
bfd_vma addr,
|
|
|
|
bfd_byte *contents)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
bfd_byte code[16];
|
2009-12-11 14:42:17 +01:00
|
|
|
int table_index = 0;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Check current page-jmp. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
if (addr + 4 > sec->size)
|
2003-01-03 09:21:43 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
ip2k_get_mem (abfd, contents + addr, 4, code);
|
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
return -1;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Search back. */
|
|
|
|
while (1)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
if (addr < 16)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Check previous 8 instructions. */
|
|
|
|
ip2k_get_mem (abfd, contents + addr - 16, 16, code);
|
|
|
|
if ((IS_ADD_W_WREG_OPCODE (code + 0))
|
|
|
|
&& (IS_SNC_OPCODE (code + 2))
|
|
|
|
&& (IS_INC_1SP_OPCODE (code + 4))
|
|
|
|
&& (IS_ADD_2SP_W_OPCODE (code + 6))
|
|
|
|
&& (IS_SNC_OPCODE (code + 8))
|
|
|
|
&& (IS_INC_1SP_OPCODE (code + 10))
|
|
|
|
&& (IS_PAGE_OPCODE (code + 12))
|
|
|
|
&& (IS_JMP_OPCODE (code + 14)))
|
2009-12-11 14:42:17 +01:00
|
|
|
return table_index;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
|
|
|
if ((IS_ADD_W_WREG_OPCODE (code + 2))
|
|
|
|
&& (IS_SNC_OPCODE (code + 4))
|
|
|
|
&& (IS_INC_1SP_OPCODE (code + 6))
|
|
|
|
&& (IS_ADD_2SP_W_OPCODE (code + 8))
|
|
|
|
&& (IS_SNC_OPCODE (code + 10))
|
|
|
|
&& (IS_INC_1SP_OPCODE (code + 12))
|
|
|
|
&& (IS_JMP_OPCODE (code + 14)))
|
2009-12-11 14:42:17 +01:00
|
|
|
return table_index;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
return -1;
|
|
|
|
|
2009-12-11 14:42:17 +01:00
|
|
|
table_index++;
|
2003-01-03 09:21:43 +01:00
|
|
|
addr -= 4;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Returns the expected page state for the given instruction not including
|
|
|
|
the effect of page instructions. */
|
|
|
|
|
|
|
|
static bfd_vma
|
|
|
|
ip2k_nominal_page_bits (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
bfd_vma addr,
|
|
|
|
bfd_byte *contents)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
bfd_vma page = PAGENO (BASEADDR (sec) + addr);
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Check if section flows into this page. If not then the page
|
|
|
|
bits are assumed to match the PC. This will be true unless
|
|
|
|
the user has a page instruction without a call/jump, in which
|
|
|
|
case they are on their own. */
|
|
|
|
if (PAGENO (BASEADDR (sec)) == page)
|
|
|
|
return page;
|
|
|
|
|
|
|
|
/* Section flows across page boundary. The page bits should match
|
|
|
|
the PC unless there is a possible flow from the previous page,
|
|
|
|
in which case it is not possible to determine the value of the
|
|
|
|
page bits. */
|
|
|
|
while (PAGENO (BASEADDR (sec) + addr - 2) == page)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
bfd_byte code[2];
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
addr -= 2;
|
|
|
|
ip2k_get_mem (abfd, contents + addr, 2, code);
|
|
|
|
if (!IS_PAGE_OPCODE (code))
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Found a page instruction, check if jump table. */
|
|
|
|
if (ip2k_is_switch_table_128 (abfd, sec, addr, contents) != -1)
|
|
|
|
/* Jump table => page is conditional. */
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (ip2k_is_switch_table_256 (abfd, sec, addr, contents) != -1)
|
|
|
|
/* Jump table => page is conditional. */
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Found a page instruction, check if conditional. */
|
|
|
|
if (addr >= 2)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_get_mem (abfd, contents + addr - 2, 2, code);
|
|
|
|
if (IS_SKIP_OPCODE (code))
|
|
|
|
/* Page is conditional. */
|
|
|
|
continue;
|
2003-01-03 09:21:43 +01:00
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Unconditional page instruction => page bits should be correct. */
|
|
|
|
return page;
|
2003-01-03 09:21:43 +01:00
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Flow from previous page => page bits are impossible to determine. */
|
|
|
|
return 0;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
static bfd_boolean
|
|
|
|
ip2k_test_page_insn (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
Elf_Internal_Rela *irel,
|
|
|
|
struct misc *misc)
|
|
|
|
{
|
|
|
|
bfd_vma symval;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Get the value of the symbol referred to by the reloc. */
|
|
|
|
symval = symbol_value (abfd, misc->symtab_hdr, misc->isymbuf, irel);
|
|
|
|
if (symval == UNDEFINED_SYMBOL)
|
|
|
|
/* This appears to be a reference to an undefined
|
|
|
|
symbol. Just ignore it--it will be caught by the
|
|
|
|
regular reloc processing. */
|
|
|
|
return FALSE;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Test if we can delete this page instruction. */
|
|
|
|
if (PAGENO (symval + irel->r_addend) !=
|
|
|
|
ip2k_nominal_page_bits (abfd, sec, irel->r_offset, misc->contents))
|
|
|
|
return FALSE;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Parts of a Stabs entry. */
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
#define STRDXOFF 0
|
|
|
|
#define TYPEOFF 4
|
|
|
|
#define OTHEROFF 5
|
|
|
|
#define DESCOFF 6
|
|
|
|
#define VALOFF 8
|
|
|
|
#define STABSIZE 12
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Adjust all the relocations entries after adding or inserting instructions. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
static void
|
|
|
|
adjust_all_relocations (bfd *abfd,
|
|
|
|
asection *sec,
|
|
|
|
bfd_vma addr,
|
|
|
|
bfd_vma endaddr,
|
|
|
|
int count,
|
|
|
|
int noadj)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2002-08-01 20:29:09 +02:00
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
2005-07-01 13:16:33 +02:00
|
|
|
Elf_Internal_Sym *isymbuf, *isym, *isymend;
|
|
|
|
unsigned int shndx;
|
|
|
|
Elf_Internal_Rela *irel, *irelend, *irelbase;
|
|
|
|
struct elf_link_hash_entry **sym_hashes;
|
|
|
|
struct elf_link_hash_entry **end_hashes;
|
|
|
|
unsigned int symcount;
|
2002-07-17 16:15:52 +02:00
|
|
|
asection *stab;
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
|
|
|
|
isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
irelbase = elf_section_data (sec)->relocs;
|
|
|
|
irelend = irelbase + sec->reloc_count;
|
|
|
|
|
|
|
|
for (irel = irelbase; irel < irelend; irel++)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
if (ELF32_R_TYPE (irel->r_info) != R_IP2K_NONE)
|
|
|
|
{
|
|
|
|
/* Get the value of the symbol referred to by the reloc. */
|
|
|
|
if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
|
|
|
|
{
|
|
|
|
asection *sym_sec;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* A local symbol. */
|
|
|
|
isym = isymbuf + ELF32_R_SYM (irel->r_info);
|
|
|
|
sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (isym->st_shndx == shndx)
|
|
|
|
{
|
|
|
|
bfd_vma baseaddr = BASEADDR (sec);
|
|
|
|
bfd_vma symval = BASEADDR (sym_sec) + isym->st_value
|
|
|
|
+ irel->r_addend;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if ((baseaddr + addr + noadj) <= symval
|
|
|
|
&& symval < (baseaddr + endaddr))
|
|
|
|
irel->r_addend += count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Do this only for PC space relocations. */
|
|
|
|
if (addr <= irel->r_offset && irel->r_offset < endaddr)
|
|
|
|
irel->r_offset += count;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Now fix the stab relocations. */
|
|
|
|
stab = bfd_get_section_by_name (abfd, ".stab");
|
2002-07-17 16:15:52 +02:00
|
|
|
if (stab)
|
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
bfd_byte *stabcontents, *stabend, *stabp;
|
|
|
|
bfd_size_type stab_size = stab->rawsize ? stab->rawsize : stab->size;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
irelbase = elf_section_data (stab)->relocs;
|
|
|
|
irelend = irelbase + stab->reloc_count;
|
|
|
|
|
|
|
|
/* Pull out the contents of the stab section. */
|
|
|
|
if (elf_section_data (stab)->this_hdr.contents != NULL)
|
|
|
|
stabcontents = elf_section_data (stab)->this_hdr.contents;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!bfd_malloc_and_get_section (abfd, stab, &stabcontents))
|
|
|
|
{
|
|
|
|
if (stabcontents != NULL)
|
|
|
|
free (stabcontents);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need to remember this. */
|
|
|
|
elf_section_data (stab)->this_hdr.contents = stabcontents;
|
|
|
|
}
|
|
|
|
|
|
|
|
stabend = stabcontents + stab_size;
|
|
|
|
|
|
|
|
for (irel = irelbase; irel < irelend; irel++)
|
|
|
|
{
|
|
|
|
if (ELF32_R_TYPE (irel->r_info) != R_IP2K_NONE)
|
|
|
|
{
|
|
|
|
/* Get the value of the symbol referred to by the reloc. */
|
|
|
|
if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
|
|
|
|
{
|
|
|
|
asection *sym_sec;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* A local symbol. */
|
|
|
|
isym = isymbuf + ELF32_R_SYM (irel->r_info);
|
|
|
|
sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (sym_sec == sec)
|
|
|
|
{
|
|
|
|
const char *name;
|
2010-06-27 06:07:55 +02:00
|
|
|
unsigned char type;
|
2005-07-01 13:16:33 +02:00
|
|
|
bfd_vma value;
|
|
|
|
bfd_vma baseaddr = BASEADDR (sec);
|
|
|
|
bfd_vma symval = BASEADDR (sym_sec) + isym->st_value
|
|
|
|
+ irel->r_addend;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if ((baseaddr + addr) <= symval
|
|
|
|
&& symval <= (baseaddr + endaddr))
|
|
|
|
irel->r_addend += count;
|
|
|
|
|
|
|
|
/* Go hunt up a function and fix its line info if needed. */
|
2013-01-10 21:03:55 +01:00
|
|
|
stabp = stabcontents + irel->r_offset - 8;
|
2005-07-01 13:16:33 +02:00
|
|
|
|
|
|
|
/* Go pullout the stab entry. */
|
|
|
|
type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
|
|
|
|
value = bfd_h_get_32 (abfd, stabp + VALOFF);
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
name = bfd_get_stab_name (type);
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (strcmp (name, "FUN") == 0)
|
|
|
|
{
|
|
|
|
int function_adjusted = 0;
|
|
|
|
|
|
|
|
if (symval > (baseaddr + addr))
|
|
|
|
/* Not in this function. */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Hey we got a function hit. */
|
|
|
|
stabp += STABSIZE;
|
|
|
|
for (;stabp < stabend; stabp += STABSIZE)
|
|
|
|
{
|
|
|
|
/* Go pullout the stab entry. */
|
|
|
|
type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
|
|
|
|
value = bfd_h_get_32 (abfd, stabp + VALOFF);
|
|
|
|
|
|
|
|
name = bfd_get_stab_name (type);
|
|
|
|
|
|
|
|
if (strcmp (name, "FUN") == 0)
|
|
|
|
{
|
|
|
|
/* Hit another function entry. */
|
|
|
|
if (function_adjusted)
|
|
|
|
{
|
|
|
|
/* Adjust the value. */
|
|
|
|
value += count;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* We need to put it back. */
|
|
|
|
bfd_h_put_32 (abfd, value,stabp + VALOFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And then bale out. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (name, "SLINE") == 0)
|
|
|
|
{
|
|
|
|
/* Got a line entry. */
|
|
|
|
if ((baseaddr + addr) <= (symval + value))
|
|
|
|
{
|
|
|
|
/* Adjust the line entry. */
|
|
|
|
value += count;
|
|
|
|
|
|
|
|
/* We need to put it back. */
|
|
|
|
bfd_h_put_32 (abfd, value,stabp + VALOFF);
|
|
|
|
function_adjusted = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* When adding an instruction back it is sometimes necessary to move any
|
|
|
|
global or local symbol that was referencing the first instruction of
|
|
|
|
the moved block to refer to the first instruction of the inserted block.
|
|
|
|
|
|
|
|
For example adding a PAGE instruction before a CALL or JMP requires
|
|
|
|
that any label on the CALL or JMP is moved to the PAGE insn. */
|
|
|
|
addr += noadj;
|
|
|
|
|
|
|
|
/* Adjust the local symbols defined in this section. */
|
|
|
|
isymend = isymbuf + symtab_hdr->sh_info;
|
|
|
|
for (isym = isymbuf; isym < isymend; isym++)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
if (isym->st_shndx == shndx
|
|
|
|
&& addr <= isym->st_value
|
|
|
|
&& isym->st_value < endaddr)
|
|
|
|
isym->st_value += count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now adjust the global symbols defined in this section. */
|
|
|
|
symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
|
|
|
|
- symtab_hdr->sh_info);
|
|
|
|
sym_hashes = elf_sym_hashes (abfd);
|
|
|
|
end_hashes = sym_hashes + symcount;
|
|
|
|
for (; sym_hashes < end_hashes; sym_hashes++)
|
|
|
|
{
|
|
|
|
struct elf_link_hash_entry *sym_hash = *sym_hashes;
|
|
|
|
|
|
|
|
if ((sym_hash->root.type == bfd_link_hash_defined
|
|
|
|
|| sym_hash->root.type == bfd_link_hash_defweak)
|
|
|
|
&& sym_hash->root.u.def.section == sec)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
if (addr <= sym_hash->root.u.def.value
|
|
|
|
&& sym_hash->root.u.def.value < endaddr)
|
|
|
|
sym_hash->root.u.def.value += count;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete some bytes from a section while relaxing. */
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
ip2k_elf_relax_delete_bytes (bfd *abfd,
|
|
|
|
asection *sec,
|
|
|
|
bfd_vma addr,
|
|
|
|
int count)
|
|
|
|
{
|
|
|
|
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
|
|
|
|
bfd_vma endaddr = sec->size;
|
|
|
|
|
|
|
|
/* Actually delete the bytes. */
|
|
|
|
memmove (contents + addr, contents + addr + count,
|
|
|
|
endaddr - addr - count);
|
|
|
|
|
|
|
|
sec->size -= count;
|
|
|
|
|
|
|
|
adjust_all_relocations (abfd, sec, addr + count, endaddr, -count, 0);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
ip2k_delete_page_insn (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
Elf_Internal_Rela *irel,
|
|
|
|
bfd_boolean *again,
|
|
|
|
struct misc *misc)
|
|
|
|
{
|
|
|
|
/* Note that we've changed the relocs, section contents, etc. */
|
|
|
|
elf_section_data (sec)->relocs = misc->irelbase;
|
|
|
|
elf_section_data (sec)->this_hdr.contents = misc->contents;
|
|
|
|
misc->symtab_hdr->contents = (bfd_byte *) misc->isymbuf;
|
|
|
|
|
|
|
|
/* Fix the relocation's type. */
|
|
|
|
irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info), R_IP2K_NONE);
|
|
|
|
|
|
|
|
/* Delete the PAGE insn. */
|
|
|
|
if (!ip2k_elf_relax_delete_bytes (abfd, sec, irel->r_offset, 2))
|
|
|
|
return FALSE;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Modified => will need to iterate relaxation again. */
|
|
|
|
*again = TRUE;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
ip2k_relax_switch_table_128 (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
Elf_Internal_Rela *irel,
|
|
|
|
bfd_boolean *again,
|
|
|
|
struct misc *misc)
|
|
|
|
{
|
|
|
|
Elf_Internal_Rela *irelend = misc->irelbase + sec->reloc_count;
|
|
|
|
Elf_Internal_Rela *ireltest = irel;
|
|
|
|
bfd_byte code[4];
|
|
|
|
bfd_vma addr;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Test all page instructions. */
|
|
|
|
addr = irel->r_offset;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (addr + 4 > sec->size)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ip2k_get_mem (abfd, misc->contents + addr, 4, code);
|
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Validate relocation entry (every entry should have a matching
|
|
|
|
relocation entry). */
|
|
|
|
if (ireltest >= irelend)
|
|
|
|
{
|
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table without complete matching relocation information."));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ireltest->r_offset != addr)
|
|
|
|
{
|
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table without complete matching relocation information."));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! ip2k_test_page_insn (abfd, sec, ireltest, misc))
|
|
|
|
/* Un-removable page insn => nothing can be done. */
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
addr += 4;
|
|
|
|
ireltest += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Relaxable. Adjust table header. */
|
|
|
|
ip2k_get_mem (abfd, misc->contents + irel->r_offset - 4, 4, code);
|
|
|
|
if ((! IS_ADD_W_WREG_OPCODE (code + 0))
|
|
|
|
|| (! IS_ADD_PCL_W_OPCODE (code + 2)))
|
|
|
|
{
|
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table header corrupt."));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ip2k_elf_relax_delete_bytes (abfd, sec, irel->r_offset - 4, 2))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*again = TRUE;
|
|
|
|
|
|
|
|
/* Delete all page instructions in table. */
|
|
|
|
while (irel < ireltest)
|
|
|
|
{
|
|
|
|
if (!ip2k_delete_page_insn (abfd, sec, irel, again, misc))
|
|
|
|
return FALSE;
|
|
|
|
irel += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
ip2k_relax_switch_table_256 (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
Elf_Internal_Rela *irel,
|
|
|
|
bfd_boolean *again,
|
|
|
|
struct misc *misc)
|
|
|
|
{
|
|
|
|
Elf_Internal_Rela *irelend = misc->irelbase + sec->reloc_count;
|
|
|
|
Elf_Internal_Rela *ireltest = irel;
|
|
|
|
bfd_byte code[12];
|
|
|
|
bfd_vma addr;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Test all page instructions. */
|
|
|
|
addr = irel->r_offset;
|
|
|
|
|
|
|
|
while (1)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
if (addr + 4 > sec->size)
|
|
|
|
break;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_get_mem (abfd, misc->contents + addr, 4, code);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if ((! IS_PAGE_OPCODE (code + 0))
|
|
|
|
|| (! IS_JMP_OPCODE (code + 2)))
|
|
|
|
break;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Validate relocation entry (every entry should have a matching
|
|
|
|
relocation entry). */
|
|
|
|
if (ireltest >= irelend)
|
|
|
|
{
|
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table without complete matching relocation information."));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (ireltest->r_offset != addr)
|
|
|
|
{
|
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table without complete matching relocation information."));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (!ip2k_test_page_insn (abfd, sec, ireltest, misc))
|
|
|
|
/* Un-removable page insn => nothing can be done. */
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
addr += 4;
|
|
|
|
ireltest += 2;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Relaxable. Adjust table header. */
|
|
|
|
ip2k_get_mem (abfd, misc->contents + irel->r_offset - 4, 2, code);
|
|
|
|
if (IS_PAGE_OPCODE (code))
|
|
|
|
addr = irel->r_offset - 16;
|
|
|
|
else
|
|
|
|
addr = irel->r_offset - 14;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_get_mem (abfd, misc->contents + addr, 12, code);
|
|
|
|
if ((!IS_ADD_W_WREG_OPCODE (code + 0))
|
|
|
|
|| (!IS_SNC_OPCODE (code + 2))
|
|
|
|
|| (!IS_INC_1SP_OPCODE (code + 4))
|
|
|
|
|| (!IS_ADD_2SP_W_OPCODE (code + 6))
|
|
|
|
|| (!IS_SNC_OPCODE (code + 8))
|
|
|
|
|| (!IS_INC_1SP_OPCODE (code + 10)))
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
_bfd_error_handler (_("ip2k relaxer: switch table header corrupt."));
|
|
|
|
return FALSE;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Delete first 3 opcodes. */
|
|
|
|
if (!ip2k_elf_relax_delete_bytes (abfd, sec, addr + 0, 6))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*again = TRUE;
|
|
|
|
|
|
|
|
/* Delete all page instructions in table. */
|
|
|
|
while (irel < ireltest)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
if (!ip2k_delete_page_insn (abfd, sec, irel, again, misc))
|
|
|
|
return FALSE;
|
|
|
|
irel += 2;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* This function handles relaxation of a section in a specific page. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_elf_relax_section_page (bfd *abfd,
|
|
|
|
asection *sec,
|
|
|
|
bfd_boolean *again,
|
|
|
|
struct misc *misc,
|
|
|
|
unsigned long page_start,
|
|
|
|
unsigned long page_end)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
|
|
|
Elf_Internal_Rela *irelend = misc->irelbase + sec->reloc_count;
|
|
|
|
Elf_Internal_Rela *irel;
|
2003-01-03 09:21:43 +01:00
|
|
|
int switch_table_128;
|
|
|
|
int switch_table_256;
|
2013-01-10 21:03:55 +01:00
|
|
|
|
2003-11-27 19:49:39 +01:00
|
|
|
/* Walk thru the section looking for relaxation opportunities. */
|
2002-07-17 16:15:52 +02:00
|
|
|
for (irel = misc->irelbase; irel < irelend; irel++)
|
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
if (ELF32_R_TYPE (irel->r_info) != (int) R_IP2K_PAGE3)
|
|
|
|
/* Ignore non page instructions. */
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if (BASEADDR (sec) + irel->r_offset < page_start)
|
|
|
|
/* Ignore page instructions on earlier page - they have
|
|
|
|
already been processed. Remember that there is code flow
|
|
|
|
that crosses a page boundary. */
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if (BASEADDR (sec) + irel->r_offset > page_end)
|
|
|
|
/* Flow beyond end of page => nothing more to do for this page. */
|
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Detect switch tables. */
|
|
|
|
switch_table_128 = ip2k_is_switch_table_128 (abfd, sec, irel->r_offset, misc->contents);
|
|
|
|
switch_table_256 = ip2k_is_switch_table_256 (abfd, sec, irel->r_offset, misc->contents);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if ((switch_table_128 > 0) || (switch_table_256 > 0))
|
|
|
|
/* If the index is greater than 0 then it has already been processed. */
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if (switch_table_128 == 0)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
if (!ip2k_relax_switch_table_128 (abfd, sec, irel, again, misc))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
continue;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
if (switch_table_256 == 0)
|
|
|
|
{
|
|
|
|
if (!ip2k_relax_switch_table_256 (abfd, sec, irel, again, misc))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
/* Simple relax. */
|
|
|
|
if (ip2k_test_page_insn (abfd, sec, irel, misc))
|
|
|
|
{
|
|
|
|
if (!ip2k_delete_page_insn (abfd, sec, irel, again, misc))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* This function handles relaxing for the ip2k.
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
Principle: Start with the first page and remove page instructions that
|
|
|
|
are not require on this first page. By removing page instructions more
|
|
|
|
code will fit into this page - repeat until nothing more can be achieved
|
|
|
|
for this page. Move on to the next page.
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
Processing the pages one at a time from the lowest page allows a removal
|
|
|
|
only policy to be used - pages can be removed but are never reinserted. */
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
static bfd_boolean
|
|
|
|
ip2k_elf_relax_section (bfd *abfd,
|
|
|
|
asection *sec,
|
|
|
|
struct bfd_link_info *link_info,
|
|
|
|
bfd_boolean *again)
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
Elf_Internal_Rela *internal_relocs;
|
|
|
|
bfd_byte *contents = NULL;
|
|
|
|
Elf_Internal_Sym *isymbuf = NULL;
|
|
|
|
static asection * first_section = NULL;
|
|
|
|
static unsigned long search_addr;
|
|
|
|
static unsigned long page_start = 0;
|
|
|
|
static unsigned long page_end = 0;
|
|
|
|
static unsigned int pass = 0;
|
|
|
|
static bfd_boolean new_pass = FALSE;
|
|
|
|
static bfd_boolean changed = FALSE;
|
|
|
|
struct misc misc;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Assume nothing changes. */
|
|
|
|
*again = FALSE;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (first_section == NULL)
|
|
|
|
{
|
|
|
|
ip2k_relaxed = TRUE;
|
|
|
|
first_section = sec;
|
|
|
|
}
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (first_section == sec)
|
|
|
|
{
|
|
|
|
pass++;
|
|
|
|
new_pass = TRUE;
|
|
|
|
}
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* We don't have to do anything for a relocatable link,
|
|
|
|
if this section does not have relocs, or if this is
|
|
|
|
not a code section. */
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
if (bfd_link_relocatable (link_info)
|
2005-07-01 13:16:33 +02:00
|
|
|
|| (sec->flags & SEC_RELOC) == 0
|
|
|
|
|| sec->reloc_count == 0
|
|
|
|
|| (sec->flags & SEC_CODE) == 0)
|
|
|
|
return TRUE;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
|
|
|
|
link_info->keep_memory);
|
|
|
|
if (internal_relocs == NULL)
|
|
|
|
goto error_return;
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Get section contents cached copy if it exists. */
|
|
|
|
if (contents == NULL)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Get cached copy if it exists. */
|
|
|
|
if (elf_section_data (sec)->this_hdr.contents != NULL)
|
|
|
|
contents = elf_section_data (sec)->this_hdr.contents;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Go get them off disk. */
|
|
|
|
if (!bfd_malloc_and_get_section (abfd, sec, &contents))
|
|
|
|
goto error_return;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Read this BFD's symbols cached copy if it exists. */
|
|
|
|
if (isymbuf == NULL && symtab_hdr->sh_info != 0)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
|
|
|
|
if (isymbuf == NULL)
|
|
|
|
isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
|
|
|
|
symtab_hdr->sh_info, 0,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
if (isymbuf == NULL)
|
|
|
|
goto error_return;
|
|
|
|
}
|
2003-01-03 09:21:43 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
misc.symtab_hdr = symtab_hdr;
|
|
|
|
misc.isymbuf = isymbuf;
|
|
|
|
misc.irelbase = internal_relocs;
|
|
|
|
misc.contents = contents;
|
|
|
|
|
|
|
|
/* This is where all the relaxation actually get done. */
|
|
|
|
if ((pass == 1) || (new_pass && !changed))
|
|
|
|
{
|
|
|
|
/* On the first pass we simply search for the lowest page that
|
|
|
|
we havn't relaxed yet. Note that the pass count is reset
|
|
|
|
each time a page is complete in order to move on to the next page.
|
|
|
|
If we can't find any more pages then we are finished. */
|
|
|
|
if (new_pass)
|
2002-08-01 20:29:09 +02:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
pass = 1;
|
|
|
|
new_pass = FALSE;
|
|
|
|
changed = TRUE; /* Pre-initialize to break out of pass 1. */
|
|
|
|
search_addr = 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((BASEADDR (sec) + sec->size < search_addr)
|
|
|
|
&& (BASEADDR (sec) + sec->size > page_end))
|
|
|
|
{
|
|
|
|
if (BASEADDR (sec) <= page_end)
|
|
|
|
search_addr = page_end + 1;
|
|
|
|
else
|
|
|
|
search_addr = BASEADDR (sec);
|
|
|
|
|
|
|
|
/* Found a page => more work to do. */
|
|
|
|
*again = TRUE;
|
2002-08-01 20:29:09 +02:00
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
2005-07-01 13:16:33 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (new_pass)
|
|
|
|
{
|
|
|
|
new_pass = FALSE;
|
|
|
|
changed = FALSE;
|
|
|
|
page_start = PAGENO (search_addr);
|
|
|
|
page_end = page_start | 0x00003FFF;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Only process sections in range. */
|
|
|
|
if ((BASEADDR (sec) + sec->size >= page_start)
|
|
|
|
&& (BASEADDR (sec) <= page_end))
|
|
|
|
{
|
|
|
|
if (!ip2k_elf_relax_section_page (abfd, sec, &changed, &misc, page_start, page_end))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*again = TRUE;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Perform some house keeping after relaxing the section. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (isymbuf != NULL
|
|
|
|
&& symtab_hdr->contents != (unsigned char *) isymbuf)
|
|
|
|
{
|
|
|
|
if (! link_info->keep_memory)
|
|
|
|
free (isymbuf);
|
|
|
|
else
|
|
|
|
symtab_hdr->contents = (unsigned char *) isymbuf;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (contents != NULL
|
|
|
|
&& elf_section_data (sec)->this_hdr.contents != contents)
|
|
|
|
{
|
|
|
|
if (! link_info->keep_memory)
|
|
|
|
free (contents);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Cache the section contents for elf_link_input_bfd. */
|
|
|
|
elf_section_data (sec)->this_hdr.contents = contents;
|
|
|
|
}
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (internal_relocs != NULL
|
|
|
|
&& elf_section_data (sec)->relocs != internal_relocs)
|
|
|
|
free (internal_relocs);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
error_return:
|
|
|
|
if (isymbuf != NULL
|
|
|
|
&& symtab_hdr->contents != (unsigned char *) isymbuf)
|
|
|
|
free (isymbuf);
|
|
|
|
if (contents != NULL
|
|
|
|
&& elf_section_data (sec)->this_hdr.contents != contents)
|
|
|
|
free (contents);
|
|
|
|
if (internal_relocs != NULL
|
|
|
|
&& elf_section_data (sec)->relocs != internal_relocs)
|
|
|
|
free (internal_relocs);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
/* Set the howto pointer for a IP2K ELF reloc. */
|
|
|
|
|
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_info_to_howto_rela (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
arelent * cache_ptr,
|
|
|
|
Elf_Internal_Rela * dst)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
|
|
|
unsigned int r_type;
|
|
|
|
|
|
|
|
r_type = ELF32_R_TYPE (dst->r_info);
|
2014-12-22 21:59:00 +01:00
|
|
|
if (r_type >= (unsigned int) R_IP2K_max)
|
|
|
|
{
|
2016-10-19 15:04:34 +02:00
|
|
|
/* xgettext:c-format */
|
2015-02-03 15:34:54 +01:00
|
|
|
_bfd_error_handler (_("%B: invalid IP2K reloc number: %d"), abfd, r_type);
|
2014-12-22 21:59:00 +01:00
|
|
|
r_type = 0;
|
|
|
|
}
|
2005-07-01 13:16:33 +02:00
|
|
|
cache_ptr->howto = & ip2k_elf_howto_table [r_type];
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform a single relocation.
|
|
|
|
By default we use the standard BFD routines. */
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_final_link_relocate (reloc_howto_type * howto,
|
|
|
|
bfd * input_bfd,
|
|
|
|
asection * input_section,
|
|
|
|
bfd_byte * contents,
|
|
|
|
Elf_Internal_Rela * rel,
|
|
|
|
bfd_vma relocation)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2003-01-03 09:21:43 +01:00
|
|
|
static bfd_vma page_addr = 0;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
2003-01-03 09:21:43 +01:00
|
|
|
bfd_reloc_status_type r = bfd_reloc_ok;
|
2002-07-17 16:15:52 +02:00
|
|
|
switch (howto->type)
|
|
|
|
{
|
|
|
|
/* Handle data space relocations. */
|
|
|
|
case R_IP2K_FR9:
|
|
|
|
case R_IP2K_BANK:
|
|
|
|
if ((relocation & IP2K_DATA_MASK) == IP2K_DATA_VALUE)
|
|
|
|
relocation &= ~IP2K_DATA_MASK;
|
|
|
|
else
|
|
|
|
r = bfd_reloc_notsupported;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_IP2K_LO8DATA:
|
|
|
|
case R_IP2K_HI8DATA:
|
|
|
|
case R_IP2K_EX8DATA:
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Handle insn space relocations. */
|
|
|
|
case R_IP2K_PAGE3:
|
2003-01-03 09:21:43 +01:00
|
|
|
page_addr = BASEADDR (input_section) + rel->r_offset;
|
|
|
|
if ((relocation & IP2K_INSN_MASK) == IP2K_INSN_VALUE)
|
|
|
|
relocation &= ~IP2K_INSN_MASK;
|
|
|
|
else
|
|
|
|
r = bfd_reloc_notsupported;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_IP2K_ADDR16CJP:
|
|
|
|
if (BASEADDR (input_section) + rel->r_offset != page_addr + 2)
|
|
|
|
{
|
2003-11-27 19:49:39 +01:00
|
|
|
/* No preceding page instruction, verify that it isn't needed. */
|
2003-01-03 09:21:43 +01:00
|
|
|
if (PAGENO (relocation + rel->r_addend) !=
|
|
|
|
ip2k_nominal_page_bits (input_bfd, input_section,
|
|
|
|
rel->r_offset, contents))
|
2016-10-19 15:04:34 +02:00
|
|
|
/* xgettext:c-format */
|
bfd_error_handler bfd_vma and bfd_size_type args
This patch uses the new %L _bfd_error_handler support for printing
bfd_vma arguments, and fixes a many other format and/or argument
errors in error messages.
bfd/
* binary.c (binary_set_section_contents): Don't print filepos in
error message.
(coff_write_object_contents): Cast size_t for error message.
(coff_slurp_line_table): Don't use bfd_vma symndx.
(coff_slurp_reloc_table): Remove unneeded cast.
* dwarf2.c (read_section): Cast bfd_int64_t to long long for
error message.
(find_abstract_instance_name): Likewise.
* elf32-arm.c (arm_type_of_stub): Correct error arg order.
(bfd_elf32_arm_stm32l4xx_erratum_scan): Don't cast error arg.
(elf32_arm_check_relocs): Make r_symndx an int.
* elf32-cris.c (cris_elf_check_relocs): Delete extraneous %s in
format string.
* elf32-metag.c (elf_metag_relocate_section): Delete extra error
message arg.
* elf32-nds32.c (nds32_elf_ex9_build_hash_table): Rewrite bogus
error message.
* elf32-i386.c (elf_i386_check_relocs): Make r_symndx an int.
* elf32-s390.c (elf_s390_check_relocs): Likewise.
* elf32-tic6x.c (elf32_tic6x_check_relocs): Likewise.
* elf32-tilepro.c (tilepro_elf_check_relocs): Likewise.
* elf32-xtensa.c (elf_xtensa_check_relocs): Likewise.
* elf64-s390.c (elf_s390_check_relocs): Likewise.
* elf64-x86-64.c (elf_x86_64_check_relocs): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_check_relocs): Likewise.
* elfnn-riscv.c (riscv_elf_check_relocs): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_check_relocs): Likewise.
* elfxx-tilegx.c (tilegx_elf_check_relocs): Likewise.
* elf64-mmix.c (_bfd_mmix_after_linker_allocation): Cast size_t args
and use %lu for error message.
* elflink.c (elf_link_adjust_relocs): Delete extra error message arg.
* mmo.c (mmo_scan): Make stab_loc a file_ptr. Cast expression for
error message.
* elf32-arm.c (elf32_arm_tls_relax): Correct format string and args
in error message.
(elf32_arm_final_link_relocate): Likewise.
* coff-arm.c (bfd_arm_process_before_allocation): Likewise.
* coffcode.h (styp_to_sec_flags): Likewise.
* cofflink.c (_bfd_coff_write_global_sym): Likewise.
* ecoff.c (_bfd_ecoff_slurp_symbol_table): Likewise.
* elf32-arc.c (arc_elf_merge_private_bfd_data): Likewise.
* elf32-bfin.c (bfinfdpic_check_relocs): Likewise.
(elf32_bfin_merge_private_bfd_data): Likewise.
* elf32-cris.c (cris_elf_relocate_section): Likewise.
* elf32-frv.c (frv_elf_merge_private_bfd_data): Likewise.
* elf32-i370.c (i370_elf_merge_private_bfd_data): Likewise.
(i370_elf_relocate_section): Likewise.
* elf32-iq2000.c (iq2000_elf_merge_private_bfd_data): Likewise.
* elf32-m32c.c (m32c_elf_merge_private_bfd_data): Likewise.
* elf32-m68hc1x.c (_bfd_m68hc11_elf_merge_private_bfd_data): Likewise.
* elf32-mcore.c (mcore_elf_relocate_section): Likewise.
* elf32-mep.c (mep_elf_merge_private_bfd_data): Likewise.
* elf32-mt.c (mt_elf_merge_private_bfd_data): Likewise.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
* elfxx-mips.c (mips_elf_merge_obj_e_flags): Likewise.
(_bfd_mips_elf_merge_private_bfd_data): Likewise.
* ieee.c (ieee_write_id, read_id): Likewise.
* mach-o.c (bfd_mach_o_write_contents): Likewise.
(bfd_mach_o_layout_commands, bfd_mach_o_read_section_32): Likewise.
(bfd_mach_o_read_section_64, bfd_mach_o_read_symtab_symbol): Likewise.
(bfd_mach_o_read_command, bfd_mach_o_header_p): Likewise.
* peXXigen.c (_bfd_XXi_swap_aouthdr_in): Likewise.
* stabs.c (_bfd_link_section_stabs): Likewise.
* coff-arm.c (coff_arm_relocate_section): Use L modifier in error
format.
* coff-mcore.c (coff_mcore_relocate_section): Likewise.
* coff-ppc.c (coff_ppc_relocate_section): Likewise.
* coff-rs6000.c (xcoff_reloc_type_toc): Likewise.
* coff-sh.c (sh_relax_section): Likewise.
(sh_relax_delete_bytes, sh_swap_insns): Likewise.
* coff-tic80.c (coff_tic80_relocate_section): Likewise.
* coffcode.h (coff_slurp_reloc_table): Likewise.
* coffgen.c (_bfd_coff_get_external_symbols): Likewise.
(_bfd_coff_read_string_table): Likewise.
* cofflink.c (_bfd_coff_generic_relocate_section): Likewise.
* compress.c (bfd_get_full_section_contents): Likewise.
* dwarf2.c (read_formatted_entries, decode_line_info): Likewise.
* elf-m10300.c (mn10300_elf_relocate_section): Likewise.
* elf.c (bfd_elf_string_from_elf_section): Likewise.
* elf32-arc.c (arc_special_overflow_checks): Likewise.
* elf32-arm.c (elf32_arm_tls_relax): Likewise.
(elf32_arm_final_link_relocate, elf32_arm_relocate_section): Likewise.
(elf32_arm_write_section): Likewise.
* elf32-bfin.c (bfin_relocate_section): Likewise.
(bfinfdpic_relocate_section): Likewise.
* elf32-hppa.c (hppa_build_one_stub): Likewise.
(final_link_relocate, elf32_hppa_relocate_section): Likewise.
* elf32-i386.c (elf_i386_tls_transition): Likewise.
(elf_i386_relocate_section): Likewise.
* elf32-ip2k.c (ip2k_final_link_relocate): Likewise.
* elf32-lm32.c (lm32_elf_finish_dynamic_sections): Likewise.
* elf32-m32r.c (m32r_elf_relocate_section): Likewise.
* elf32-m68k.c (elf_m68k_relocate_section): Likewise.
* elf32-metag.c (elf_metag_relocate_section): Likewise.
* elf32-nds32.c (unrecognized_reloc_msg): Likewise.
(nds32_elf_relax_longcall1, nds32_elf_relax_longcall2): Likewise.
(nds32_elf_relax_longcall3, nds32_elf_relax_longjump1): Likewise.
(nds32_elf_relax_longjump2, nds32_elf_relax_longjump3): Likewise.
(nds32_elf_relax_longcall4, nds32_elf_relax_longcall5): Likewise.
(nds32_elf_relax_longcall6, nds32_elf_relax_longjump4): Likewise.
(nds32_elf_relax_longjump5, nds32_elf_relax_longjump6): Likewise.
(nds32_elf_relax_longjump7, nds32_elf_relax_loadstore): Likewise.
(nds32_elf_relax_ptr, nds32_elf_ex9_build_hash_table): Likewise.
* elf32-nios2.c (nios2_elf32_relocate_section): Likewise.
* elf32-rx.c (UNSAFE_FOR_PID): Likewise.
* elf32-s390.c (invalid_tls_insn, elf_s390_relocate_section): Likewise.
* elf32-score.c (s3_bfd_score_elf_check_relocs): Likewise.
* elf32-score7.c (s7_bfd_score_elf_check_relocs): Likewise.
* elf32-sh.c (sh_elf_relax_section): Likewise.
(sh_elf_relax_delete_bytes, sh_elf_swap_insns): Likewise.
(sh_elf_relocate_section): Likewise.
* elf32-sh64.c (shmedia_prepare_reloc): Likewise.
* elf32-spu.c (spu_elf_relocate_section): Likewise.
* elf32-tic6x.c (elf32_tic6x_relocate_section): Likewise.
* elf32-tilepro.c (tilepro_elf_relocate_section): Likewise.
* elf32-v850.c (v850_elf_relax_section): Likewise.
* elf32-vax.c (elf_vax_check_relocs): Likewise.
(elf_vax_relocate_section): Likewise.
* elf32-xtensa.c (elf_xtensa_relocate_section): Likewise.
(extend_ebb_bounds_forward, extend_ebb_bounds_backward): Likewise.
(compute_text_actions, compute_ebb_proposed_actions): Likewise.
(do_fix_for_relocatable_link): Likewise.
* elf64-alpha.c (elf64_alpha_relax_got_load): Likewise.
(elf64_alpha_relax_with_lituse): Likewise.
* elf64-hppa.c (elf64_hppa_finish_dynamic_symbol): Likewise.
(elf_hppa_final_link_relocate): Likewise.
* elf64-ia64-vms.c (elf64_ia64_relax_section): Likewise.
(elf64_ia64_choose_gp, elf64_ia64_relocate_section): Likewise.
(elf64_vms_link_add_object_symbols): Likewise.
* elf64-mmix.c (mmix_elf_perform_relocation): Likewise.
(mmix_final_link_relocate): Likewise.
* elf64-s390.c (invalid_tls_insn): Likewise.
(elf_s390_relocate_section): Likewise.
* elf64-sh64.c (sh_elf64_relocate_section): Likewise.
* elf64-x86-64.c (elf_x86_64_tls_transition): Likewise.
(elf_x86_64_relocate_section): Likewise.
* elfcode.h (elf_slurp_symbol_table): Likewise.
* elfcore.h (elf_core_file_p): Likewise.
* elflink.c (elf_link_read_relocs_from_section): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_final_link_relocate): Likewise.
(elfNN_aarch64_relocate_section): Likewise.
* elfnn-ia64.c (elfNN_ia64_relax_section): Likewise.
(elfNN_ia64_choose_gp, elfNN_ia64_relocate_section): Likewise.
* elfnn-riscv.c (riscv_elf_relocate_section): Likewise.
* elfxx-mips.c (_bfd_mips_elf_check_relocs): Likewise.
(_bfd_mips_elf_relocate_section): Likewise.
(_bfd_mips_elf_finish_dynamic_symbol, mips_finish_exec_plt): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_relocate_section): Likewise.
* elfxx-tilegx.c (tilegx_elf_relocate_section): Likewise.
* ieee.c (ieee_slurp_external_symbols): Likewise.
* ihex.c (ihex_write_object_content): Likewise.
* mach-o.c (bfd_mach_o_build_exec_seg_command): Likewise.
* merge.c (_bfd_merged_section_offset): Likewise.
* mmo.c (mmo_write_loc_chunk): Likewise.
(mmo_write_object_contents): Likewise.
* peXXigen.c (_bfd_XX_bfd_copy_private_bfd_data_common): Likewise.
* stabs.c (_bfd_link_section_stabs): Likewise.
* xcofflink.c (xcoff_link_add_symbols, xcoff_find_tc0): Likewise.
ld/
* testsuite/ld-arc/nps-1b.err: Update.
* testsuite/ld-x86-64/ilp32-11.d: Update.
2017-07-09 15:41:32 +02:00
|
|
|
_bfd_error_handler (_("ip2k linker: missing page instruction at %#Lx (dest = %#Lx)"),
|
2003-01-03 09:21:43 +01:00
|
|
|
BASEADDR (input_section) + rel->r_offset,
|
|
|
|
relocation + rel->r_addend);
|
|
|
|
}
|
|
|
|
else if (ip2k_relaxed)
|
|
|
|
{
|
2003-11-27 19:49:39 +01:00
|
|
|
/* Preceding page instruction. Verify that the page instruction is
|
2003-01-03 09:21:43 +01:00
|
|
|
really needed. One reason for the relaxation to miss a page is if
|
|
|
|
the section is not marked as executable. */
|
2005-07-01 13:16:33 +02:00
|
|
|
if (!ip2k_is_switch_table_128 (input_bfd, input_section,
|
|
|
|
rel->r_offset - 2, contents)
|
|
|
|
&& !ip2k_is_switch_table_256 (input_bfd, input_section,
|
|
|
|
rel->r_offset - 2, contents)
|
|
|
|
&& (PAGENO (relocation + rel->r_addend) ==
|
|
|
|
ip2k_nominal_page_bits (input_bfd, input_section,
|
|
|
|
rel->r_offset - 2, contents)))
|
2016-10-19 15:04:34 +02:00
|
|
|
/* xgettext:c-format */
|
bfd_error_handler bfd_vma and bfd_size_type args
This patch uses the new %L _bfd_error_handler support for printing
bfd_vma arguments, and fixes a many other format and/or argument
errors in error messages.
bfd/
* binary.c (binary_set_section_contents): Don't print filepos in
error message.
(coff_write_object_contents): Cast size_t for error message.
(coff_slurp_line_table): Don't use bfd_vma symndx.
(coff_slurp_reloc_table): Remove unneeded cast.
* dwarf2.c (read_section): Cast bfd_int64_t to long long for
error message.
(find_abstract_instance_name): Likewise.
* elf32-arm.c (arm_type_of_stub): Correct error arg order.
(bfd_elf32_arm_stm32l4xx_erratum_scan): Don't cast error arg.
(elf32_arm_check_relocs): Make r_symndx an int.
* elf32-cris.c (cris_elf_check_relocs): Delete extraneous %s in
format string.
* elf32-metag.c (elf_metag_relocate_section): Delete extra error
message arg.
* elf32-nds32.c (nds32_elf_ex9_build_hash_table): Rewrite bogus
error message.
* elf32-i386.c (elf_i386_check_relocs): Make r_symndx an int.
* elf32-s390.c (elf_s390_check_relocs): Likewise.
* elf32-tic6x.c (elf32_tic6x_check_relocs): Likewise.
* elf32-tilepro.c (tilepro_elf_check_relocs): Likewise.
* elf32-xtensa.c (elf_xtensa_check_relocs): Likewise.
* elf64-s390.c (elf_s390_check_relocs): Likewise.
* elf64-x86-64.c (elf_x86_64_check_relocs): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_check_relocs): Likewise.
* elfnn-riscv.c (riscv_elf_check_relocs): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_check_relocs): Likewise.
* elfxx-tilegx.c (tilegx_elf_check_relocs): Likewise.
* elf64-mmix.c (_bfd_mmix_after_linker_allocation): Cast size_t args
and use %lu for error message.
* elflink.c (elf_link_adjust_relocs): Delete extra error message arg.
* mmo.c (mmo_scan): Make stab_loc a file_ptr. Cast expression for
error message.
* elf32-arm.c (elf32_arm_tls_relax): Correct format string and args
in error message.
(elf32_arm_final_link_relocate): Likewise.
* coff-arm.c (bfd_arm_process_before_allocation): Likewise.
* coffcode.h (styp_to_sec_flags): Likewise.
* cofflink.c (_bfd_coff_write_global_sym): Likewise.
* ecoff.c (_bfd_ecoff_slurp_symbol_table): Likewise.
* elf32-arc.c (arc_elf_merge_private_bfd_data): Likewise.
* elf32-bfin.c (bfinfdpic_check_relocs): Likewise.
(elf32_bfin_merge_private_bfd_data): Likewise.
* elf32-cris.c (cris_elf_relocate_section): Likewise.
* elf32-frv.c (frv_elf_merge_private_bfd_data): Likewise.
* elf32-i370.c (i370_elf_merge_private_bfd_data): Likewise.
(i370_elf_relocate_section): Likewise.
* elf32-iq2000.c (iq2000_elf_merge_private_bfd_data): Likewise.
* elf32-m32c.c (m32c_elf_merge_private_bfd_data): Likewise.
* elf32-m68hc1x.c (_bfd_m68hc11_elf_merge_private_bfd_data): Likewise.
* elf32-mcore.c (mcore_elf_relocate_section): Likewise.
* elf32-mep.c (mep_elf_merge_private_bfd_data): Likewise.
* elf32-mt.c (mt_elf_merge_private_bfd_data): Likewise.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
* elfxx-mips.c (mips_elf_merge_obj_e_flags): Likewise.
(_bfd_mips_elf_merge_private_bfd_data): Likewise.
* ieee.c (ieee_write_id, read_id): Likewise.
* mach-o.c (bfd_mach_o_write_contents): Likewise.
(bfd_mach_o_layout_commands, bfd_mach_o_read_section_32): Likewise.
(bfd_mach_o_read_section_64, bfd_mach_o_read_symtab_symbol): Likewise.
(bfd_mach_o_read_command, bfd_mach_o_header_p): Likewise.
* peXXigen.c (_bfd_XXi_swap_aouthdr_in): Likewise.
* stabs.c (_bfd_link_section_stabs): Likewise.
* coff-arm.c (coff_arm_relocate_section): Use L modifier in error
format.
* coff-mcore.c (coff_mcore_relocate_section): Likewise.
* coff-ppc.c (coff_ppc_relocate_section): Likewise.
* coff-rs6000.c (xcoff_reloc_type_toc): Likewise.
* coff-sh.c (sh_relax_section): Likewise.
(sh_relax_delete_bytes, sh_swap_insns): Likewise.
* coff-tic80.c (coff_tic80_relocate_section): Likewise.
* coffcode.h (coff_slurp_reloc_table): Likewise.
* coffgen.c (_bfd_coff_get_external_symbols): Likewise.
(_bfd_coff_read_string_table): Likewise.
* cofflink.c (_bfd_coff_generic_relocate_section): Likewise.
* compress.c (bfd_get_full_section_contents): Likewise.
* dwarf2.c (read_formatted_entries, decode_line_info): Likewise.
* elf-m10300.c (mn10300_elf_relocate_section): Likewise.
* elf.c (bfd_elf_string_from_elf_section): Likewise.
* elf32-arc.c (arc_special_overflow_checks): Likewise.
* elf32-arm.c (elf32_arm_tls_relax): Likewise.
(elf32_arm_final_link_relocate, elf32_arm_relocate_section): Likewise.
(elf32_arm_write_section): Likewise.
* elf32-bfin.c (bfin_relocate_section): Likewise.
(bfinfdpic_relocate_section): Likewise.
* elf32-hppa.c (hppa_build_one_stub): Likewise.
(final_link_relocate, elf32_hppa_relocate_section): Likewise.
* elf32-i386.c (elf_i386_tls_transition): Likewise.
(elf_i386_relocate_section): Likewise.
* elf32-ip2k.c (ip2k_final_link_relocate): Likewise.
* elf32-lm32.c (lm32_elf_finish_dynamic_sections): Likewise.
* elf32-m32r.c (m32r_elf_relocate_section): Likewise.
* elf32-m68k.c (elf_m68k_relocate_section): Likewise.
* elf32-metag.c (elf_metag_relocate_section): Likewise.
* elf32-nds32.c (unrecognized_reloc_msg): Likewise.
(nds32_elf_relax_longcall1, nds32_elf_relax_longcall2): Likewise.
(nds32_elf_relax_longcall3, nds32_elf_relax_longjump1): Likewise.
(nds32_elf_relax_longjump2, nds32_elf_relax_longjump3): Likewise.
(nds32_elf_relax_longcall4, nds32_elf_relax_longcall5): Likewise.
(nds32_elf_relax_longcall6, nds32_elf_relax_longjump4): Likewise.
(nds32_elf_relax_longjump5, nds32_elf_relax_longjump6): Likewise.
(nds32_elf_relax_longjump7, nds32_elf_relax_loadstore): Likewise.
(nds32_elf_relax_ptr, nds32_elf_ex9_build_hash_table): Likewise.
* elf32-nios2.c (nios2_elf32_relocate_section): Likewise.
* elf32-rx.c (UNSAFE_FOR_PID): Likewise.
* elf32-s390.c (invalid_tls_insn, elf_s390_relocate_section): Likewise.
* elf32-score.c (s3_bfd_score_elf_check_relocs): Likewise.
* elf32-score7.c (s7_bfd_score_elf_check_relocs): Likewise.
* elf32-sh.c (sh_elf_relax_section): Likewise.
(sh_elf_relax_delete_bytes, sh_elf_swap_insns): Likewise.
(sh_elf_relocate_section): Likewise.
* elf32-sh64.c (shmedia_prepare_reloc): Likewise.
* elf32-spu.c (spu_elf_relocate_section): Likewise.
* elf32-tic6x.c (elf32_tic6x_relocate_section): Likewise.
* elf32-tilepro.c (tilepro_elf_relocate_section): Likewise.
* elf32-v850.c (v850_elf_relax_section): Likewise.
* elf32-vax.c (elf_vax_check_relocs): Likewise.
(elf_vax_relocate_section): Likewise.
* elf32-xtensa.c (elf_xtensa_relocate_section): Likewise.
(extend_ebb_bounds_forward, extend_ebb_bounds_backward): Likewise.
(compute_text_actions, compute_ebb_proposed_actions): Likewise.
(do_fix_for_relocatable_link): Likewise.
* elf64-alpha.c (elf64_alpha_relax_got_load): Likewise.
(elf64_alpha_relax_with_lituse): Likewise.
* elf64-hppa.c (elf64_hppa_finish_dynamic_symbol): Likewise.
(elf_hppa_final_link_relocate): Likewise.
* elf64-ia64-vms.c (elf64_ia64_relax_section): Likewise.
(elf64_ia64_choose_gp, elf64_ia64_relocate_section): Likewise.
(elf64_vms_link_add_object_symbols): Likewise.
* elf64-mmix.c (mmix_elf_perform_relocation): Likewise.
(mmix_final_link_relocate): Likewise.
* elf64-s390.c (invalid_tls_insn): Likewise.
(elf_s390_relocate_section): Likewise.
* elf64-sh64.c (sh_elf64_relocate_section): Likewise.
* elf64-x86-64.c (elf_x86_64_tls_transition): Likewise.
(elf_x86_64_relocate_section): Likewise.
* elfcode.h (elf_slurp_symbol_table): Likewise.
* elfcore.h (elf_core_file_p): Likewise.
* elflink.c (elf_link_read_relocs_from_section): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_final_link_relocate): Likewise.
(elfNN_aarch64_relocate_section): Likewise.
* elfnn-ia64.c (elfNN_ia64_relax_section): Likewise.
(elfNN_ia64_choose_gp, elfNN_ia64_relocate_section): Likewise.
* elfnn-riscv.c (riscv_elf_relocate_section): Likewise.
* elfxx-mips.c (_bfd_mips_elf_check_relocs): Likewise.
(_bfd_mips_elf_relocate_section): Likewise.
(_bfd_mips_elf_finish_dynamic_symbol, mips_finish_exec_plt): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_relocate_section): Likewise.
* elfxx-tilegx.c (tilegx_elf_relocate_section): Likewise.
* ieee.c (ieee_slurp_external_symbols): Likewise.
* ihex.c (ihex_write_object_content): Likewise.
* mach-o.c (bfd_mach_o_build_exec_seg_command): Likewise.
* merge.c (_bfd_merged_section_offset): Likewise.
* mmo.c (mmo_write_loc_chunk): Likewise.
(mmo_write_object_contents): Likewise.
* peXXigen.c (_bfd_XX_bfd_copy_private_bfd_data_common): Likewise.
* stabs.c (_bfd_link_section_stabs): Likewise.
* xcofflink.c (xcoff_link_add_symbols, xcoff_find_tc0): Likewise.
ld/
* testsuite/ld-arc/nps-1b.err: Update.
* testsuite/ld-x86-64/ilp32-11.d: Update.
2017-07-09 15:41:32 +02:00
|
|
|
_bfd_error_handler (_("ip2k linker: redundant page instruction at %#Lx (dest = %#Lx)"),
|
2003-01-03 09:21:43 +01:00
|
|
|
page_addr,
|
|
|
|
relocation + rel->r_addend);
|
|
|
|
}
|
|
|
|
if ((relocation & IP2K_INSN_MASK) == IP2K_INSN_VALUE)
|
|
|
|
relocation &= ~IP2K_INSN_MASK;
|
|
|
|
else
|
|
|
|
r = bfd_reloc_notsupported;
|
|
|
|
break;
|
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
case R_IP2K_LO8INSN:
|
|
|
|
case R_IP2K_HI8INSN:
|
|
|
|
case R_IP2K_PC_SKIP:
|
|
|
|
if ((relocation & IP2K_INSN_MASK) == IP2K_INSN_VALUE)
|
|
|
|
relocation &= ~IP2K_INSN_MASK;
|
|
|
|
else
|
|
|
|
r = bfd_reloc_notsupported;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_IP2K_16:
|
|
|
|
/* If this is a relocation involving a TEXT
|
|
|
|
symbol, reduce it to a word address. */
|
|
|
|
if ((relocation & IP2K_INSN_MASK) == IP2K_INSN_VALUE)
|
|
|
|
howto = &ip2k_elf_howto_table[ (int) R_IP2K_TEXT];
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Pass others through. */
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only install relocation if above tests did not disqualify it. */
|
|
|
|
if (r == bfd_reloc_ok)
|
|
|
|
r = _bfd_final_link_relocate (howto, input_bfd, input_section,
|
|
|
|
contents, rel->r_offset,
|
|
|
|
relocation, rel->r_addend);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Relocate a IP2K ELF section.
|
|
|
|
|
|
|
|
The RELOCATE_SECTION function is called by the new ELF backend linker
|
|
|
|
to handle the relocations for a section.
|
|
|
|
|
|
|
|
The relocs are always passed as Rela structures; if the section
|
|
|
|
actually uses Rel structures, the r_addend field will always be
|
|
|
|
zero.
|
|
|
|
|
|
|
|
This function is responsible for adjusting the section contents as
|
2003-06-25 08:40:27 +02:00
|
|
|
necessary, and (if using Rela relocs and generating a relocatable
|
2002-07-17 16:15:52 +02:00
|
|
|
output file) adjusting the reloc addend as necessary.
|
|
|
|
|
|
|
|
This function does not have to worry about setting the reloc
|
|
|
|
address or the reloc symbol index.
|
|
|
|
|
|
|
|
LOCAL_SYMS is a pointer to the swapped in local symbols.
|
|
|
|
|
|
|
|
LOCAL_SECTIONS is an array giving the section in the input file
|
|
|
|
corresponding to the st_shndx field of each local symbol.
|
|
|
|
|
|
|
|
The global hash table entry for the global symbols can be found
|
|
|
|
via elf_sym_hashes (input_bfd).
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
When generating relocatable output, this function must handle
|
2002-07-17 16:15:52 +02:00
|
|
|
STB_LOCAL/STT_SECTION symbols specially. The output symbol is
|
|
|
|
going to be the section symbol corresponding to the output
|
|
|
|
section, which means that the addend must be adjusted
|
|
|
|
accordingly. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2005-07-01 13:16:33 +02:00
|
|
|
ip2k_elf_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED,
|
|
|
|
struct bfd_link_info *info,
|
|
|
|
bfd *input_bfd,
|
|
|
|
asection *input_section,
|
|
|
|
bfd_byte *contents,
|
|
|
|
Elf_Internal_Rela *relocs,
|
|
|
|
Elf_Internal_Sym *local_syms,
|
|
|
|
asection **local_sections)
|
2002-07-17 16:15:52 +02:00
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
struct elf_link_hash_entry **sym_hashes;
|
|
|
|
Elf_Internal_Rela *rel;
|
|
|
|
Elf_Internal_Rela *relend;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
|
|
|
|
sym_hashes = elf_sym_hashes (input_bfd);
|
|
|
|
relend = relocs + input_section->reloc_count;
|
|
|
|
|
|
|
|
for (rel = relocs; rel < relend; rel ++)
|
|
|
|
{
|
|
|
|
reloc_howto_type * howto;
|
|
|
|
unsigned long r_symndx;
|
|
|
|
Elf_Internal_Sym * sym;
|
|
|
|
asection * sec;
|
|
|
|
struct elf_link_hash_entry * h;
|
|
|
|
bfd_vma relocation;
|
|
|
|
bfd_reloc_status_type r;
|
|
|
|
const char * name = NULL;
|
|
|
|
int r_type;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
r_type = ELF32_R_TYPE (rel->r_info);
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
2010-06-27 06:07:55 +02:00
|
|
|
howto = ip2k_elf_howto_table + r_type;
|
2002-07-17 16:15:52 +02:00
|
|
|
h = NULL;
|
|
|
|
sym = NULL;
|
|
|
|
sec = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
if (r_symndx < symtab_hdr->sh_info)
|
|
|
|
{
|
|
|
|
sym = local_syms + r_symndx;
|
|
|
|
sec = local_sections [r_symndx];
|
|
|
|
relocation = BASEADDR (sec) + sym->st_value;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
name = bfd_elf_string_from_elf_section
|
|
|
|
(input_bfd, symtab_hdr->sh_link, sym->st_name);
|
|
|
|
name = (name == NULL) ? bfd_section_name (input_bfd, sec) : name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-05 19:29:44 +01:00
|
|
|
bfd_boolean warned, ignored;
|
2003-08-20 10:37:19 +02:00
|
|
|
bfd_boolean unresolved_reloc;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
* elf-bfd.h (RELOC_FOR_GLOBAL_SYMBOL): Add input_bfd, input_section
and rel args. Group input and output args. Wrap to 80 columns.
* elf-m10200.c, elf-m10300.c, elf32-arm.h, elf32-avr.c,
elf32-cris.c, elf32-d10v.c, elf32-fr30.c, elf32-h8300.c,
elf32-hppa.c, elf32-i386.c, elf32-i860.c, elf32-ip2k.c,
elf32-iq2000.c, elf32-m68hc1x.c, elf32-m68k.c, elf32-mcore.c,
elf32-msp430.c, elf32-openrisc.c, elf32-ppc.c, elf32-s390.c,
elf32-sparc.c, elf32-v850.c, elf32-vax.c, elf32-xstormy16.c,
elf32-xtensa.c, elf64-alpha.c, elf64-mmix.c, elf64-ppc.c,
elf64-s390.c, elf64-sparc.c, elf64-x86-64.c, elfxx-ia64.c: Update
RELOC_FOR_GLOBAL_SYMBOL invocation.
2004-03-22 03:28:17 +01:00
|
|
|
RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
|
|
|
|
r_symndx, symtab_hdr, sym_hashes,
|
|
|
|
h, sec, relocation,
|
2013-11-05 19:29:44 +01:00
|
|
|
unresolved_reloc, warned, ignored);
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
name = h->root.root.string;
|
|
|
|
}
|
|
|
|
|
PR ld/13991
bfd/
* bfd/elf-bfd.h (_bfd_elf_link_just_syms): Define as
_bfd_generic_link_just_syms.
* bfd/elflink.c (_bfd_elf_link_just_syms): Delete.
* bfd/linker.c (_bfd_generic_link_just_syms): Set sec_info_type.
* bfd/bfd-in.h (discarded_section): Renamed from elf_discarded_section.
* bfd/section.c (SEC_INFO_TYPE_NONE, SEC_INFO_TYPE_STABS,
SEC_INFO_TYPE_MERGE, SEC_INFO_TYPE_EH_FRAME,
SEC_INFO_TYPE_JUST_SYMS): Renamed from corresponding ELF_INFO_TYPE.
* bfd/elf-eh-frame.c, * bfd/elf-m10200.c, * bfd/elf-m10300.c,
* bfd/elf.c, * bfd/elf32-arm.c, * bfd/elf32-avr.c, * bfd/elf32-bfin.c,
* bfd/elf32-cr16.c, * bfd/elf32-cr16c.c, * bfd/elf32-cris.c,
* bfd/elf32-crx.c, * bfd/elf32-d10v.c, * bfd/elf32-epiphany.c,
* bfd/elf32-fr30.c, * bfd/elf32-frv.c, * bfd/elf32-h8300.c,
* bfd/elf32-hppa.c, * bfd/elf32-i370.c, * bfd/elf32-i386.c,
* bfd/elf32-i860.c, * bfd/elf32-ip2k.c, * bfd/elf32-iq2000.c,
* bfd/elf32-lm32.c, * bfd/elf32-m32c.c, * bfd/elf32-m32r.c,
* bfd/elf32-m68hc1x.c, * bfd/elf32-m68k.c, * bfd/elf32-mcore.c,
* bfd/elf32-mep.c, * bfd/elf32-moxie.c, * bfd/elf32-msp430.c,
* bfd/elf32-mt.c, * bfd/elf32-openrisc.c, * bfd/elf32-ppc.c,
* bfd/elf32-rl78.c, * bfd/elf32-rx.c, * bfd/elf32-s390.c,
* bfd/elf32-score.c, * bfd/elf32-score7.c, * bfd/elf32-sh.c,
* bfd/elf32-spu.c, * bfd/elf32-tic6x.c, * bfd/elf32-tilepro.c,
* bfd/elf32-v850.c, * bfd/elf32-vax.c, * bfd/elf32-xc16x.c,
* bfd/elf32-xstormy16.c, * bfd/elf32-xtensa.c, * bfd/elf64-alpha.c,
* bfd/elf64-hppa.c, * bfd/elf64-ia64-vms.c, * bfd/elf64-mmix.c,
* bfd/elf64-ppc.c, * bfd/elf64-s390.c, * bfd/elf64-sh64.c,
* bfd/elf64-x86-64.c, * bfd/elflink.c, * bfd/elfnn-ia64.c,
* bfd/elfxx-mips.c, * bfd/elfxx-sparc.c, * bfd/elfxx-tilegx.c,
* bfd/reloc.c: Update all references.
* bfd/bfd-in2.h: Regenerate.
ld/
* ld/ldlang.c (size_input_section): Use sec_info_type rather than
usrdata->flags.just_syms.
* ld/ldwrite.c (build_link_order): Likewise.
* ld/emultempl/hppaelf.em (build_section_lists): Likewise.
* ld/emultempl/ppc64elf.em (build_toc_list): Likewise.
* ld/emultempl/armelf.em (build_section_lists): Likewise.
(after_allocation): Update for renamed sec_info_type value.
* ld/emultempl/tic6xdsbt.em: Likewise.
2012-04-24 07:12:40 +02:00
|
|
|
if (sec != NULL && discarded_section (sec))
|
2010-10-25 17:54:16 +02:00
|
|
|
RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
|
2012-05-07 05:27:52 +02:00
|
|
|
rel, 1, relend, howto, 0, contents);
|
2007-03-07 09:54:35 +01:00
|
|
|
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
if (bfd_link_relocatable (info))
|
2007-03-07 09:54:35 +01:00
|
|
|
continue;
|
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
/* Finally, the sole IP2K-specific part. */
|
|
|
|
r = ip2k_final_link_relocate (howto, input_bfd, input_section,
|
|
|
|
contents, rel, relocation);
|
|
|
|
|
|
|
|
if (r != bfd_reloc_ok)
|
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
const char * msg = NULL;
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
switch (r)
|
|
|
|
{
|
|
|
|
case bfd_reloc_overflow:
|
Return void from linker callbacks
The ldmain.c implementation of these linker callback functions always
return true, so any code handling a false return is dead. What's
more, some of the bfd backends abort if ever a false return is seen,
and there seems to be some confusion in gdb's compile-object-load.c.
The return value was never meant to be "oh yes, a multiple_definition
error occurred", but rather "out of memory or other catastrophic
failure".
This patch removes the status return on the callbacks that always
return true. I kept the return status for "notice" because that one
does happen to need to return "out of memory".
include/
* bfdlink.h (struct bfd_link_callbacks): Update comments.
Return void from multiple_definition, multiple_common,
add_to_set, constructor, warning, undefined_symbol,
reloc_overflow, reloc_dangerous and unattached_reloc.
bfd/
* aoutx.h: Adjust linker callback calls throughout file,
removing dead code.
* bout.c: Likewise.
* coff-alpha.c: Likewise.
* coff-arm.c: Likewise.
* coff-h8300.c: Likewise.
* coff-h8500.c: Likewise.
* coff-i960.c: Likewise.
* coff-mcore.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic80.c: Likewise.
* coff-w65.c: Likewise.
* coff-z80.c: Likewise.
* coff-z8k.c: Likewise.
* coff64-rs6000.c: Likewise.
* cofflink.c: Likewise.
* ecoff.c: Likewise.
* elf-bfd.h: Likewise.
* elf-m10200.c: Likewise.
* elf-m10300.c: Likewise.
* elf32-arc.c: Likewise.
* elf32-arm.c: Likewise.
* elf32-avr.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-cr16c.c: Likewise.
* elf32-cris.c: Likewise.
* elf32-crx.c: Likewise.
* elf32-d10v.c: Likewise.
* elf32-epiphany.c: Likewise.
* elf32-fr30.c: Likewise.
* elf32-frv.c: Likewise.
* elf32-ft32.c: Likewise.
* elf32-h8300.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-i370.c: Likewise.
* elf32-i386.c: Likewise.
* elf32-i860.c: Likewise.
* elf32-ip2k.c: Likewise.
* elf32-iq2000.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32c.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-m68k.c: Likewise.
* elf32-mep.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-microblaze.c: Likewise.
* elf32-moxie.c: Likewise.
* elf32-msp430.c: Likewise.
* elf32-mt.c: Likewise.
* elf32-nds32.c: Likewise.
* elf32-nios2.c: Likewise.
* elf32-or1k.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-s390.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-sh.c: Likewise.
* elf32-sh64.c: Likewise.
* elf32-spu.c: Likewise.
* elf32-tic6x.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-v850.c: Likewise.
* elf32-vax.c: Likewise.
* elf32-visium.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-ppc.c: Likewise.
* elf64-s390.c: Likewise.
* elf64-sh64.c: Likewise.
* elf64-x86-64.c: Likewise.
* elflink.c: Likewise.
* elfnn-aarch64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-tilegx.c: Likewise.
* linker.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* reloc.c: Likewise.
* reloc16.c: Likewise.
* simple.c: Likewise.
* vms-alpha.c: Likewise.
* xcofflink.c: Likewise.
* elf32-rl78.c (get_symbol_value, get_romstart, get_ramstart): Delete
status param. Adjust calls to these and linker callbacks throughout.
* elf32-rx.c: (get_symbol_value, get_gp, get_romstart,
get_ramstart): Delete status param. Adjust calls to these and
linker callbacks throughout.
ld/
* ldmain.c (multiple_definition, multiple_common, add_to_set,
constructor_callback, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc): Return void.
* emultempl/elf32.em: Adjust callback calls.
gdb/
* compile/compile-object-load.c (link_callbacks_multiple_definition,
link_callbacks_warning, link_callbacks_undefined_symbol,
link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
link_callbacks_reloc_dangerous,
link_callbacks_unattached_reloc): Return void.
2016-05-27 09:50:55 +02:00
|
|
|
(*info->callbacks->reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
(info, (h ? &h->root : NULL), name, howto->name,
|
|
|
|
(bfd_vma) 0, input_bfd, input_section, rel->r_offset);
|
2002-07-17 16:15:52 +02:00
|
|
|
break;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
case bfd_reloc_undefined:
|
Return void from linker callbacks
The ldmain.c implementation of these linker callback functions always
return true, so any code handling a false return is dead. What's
more, some of the bfd backends abort if ever a false return is seen,
and there seems to be some confusion in gdb's compile-object-load.c.
The return value was never meant to be "oh yes, a multiple_definition
error occurred", but rather "out of memory or other catastrophic
failure".
This patch removes the status return on the callbacks that always
return true. I kept the return status for "notice" because that one
does happen to need to return "out of memory".
include/
* bfdlink.h (struct bfd_link_callbacks): Update comments.
Return void from multiple_definition, multiple_common,
add_to_set, constructor, warning, undefined_symbol,
reloc_overflow, reloc_dangerous and unattached_reloc.
bfd/
* aoutx.h: Adjust linker callback calls throughout file,
removing dead code.
* bout.c: Likewise.
* coff-alpha.c: Likewise.
* coff-arm.c: Likewise.
* coff-h8300.c: Likewise.
* coff-h8500.c: Likewise.
* coff-i960.c: Likewise.
* coff-mcore.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic80.c: Likewise.
* coff-w65.c: Likewise.
* coff-z80.c: Likewise.
* coff-z8k.c: Likewise.
* coff64-rs6000.c: Likewise.
* cofflink.c: Likewise.
* ecoff.c: Likewise.
* elf-bfd.h: Likewise.
* elf-m10200.c: Likewise.
* elf-m10300.c: Likewise.
* elf32-arc.c: Likewise.
* elf32-arm.c: Likewise.
* elf32-avr.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-cr16c.c: Likewise.
* elf32-cris.c: Likewise.
* elf32-crx.c: Likewise.
* elf32-d10v.c: Likewise.
* elf32-epiphany.c: Likewise.
* elf32-fr30.c: Likewise.
* elf32-frv.c: Likewise.
* elf32-ft32.c: Likewise.
* elf32-h8300.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-i370.c: Likewise.
* elf32-i386.c: Likewise.
* elf32-i860.c: Likewise.
* elf32-ip2k.c: Likewise.
* elf32-iq2000.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32c.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-m68k.c: Likewise.
* elf32-mep.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-microblaze.c: Likewise.
* elf32-moxie.c: Likewise.
* elf32-msp430.c: Likewise.
* elf32-mt.c: Likewise.
* elf32-nds32.c: Likewise.
* elf32-nios2.c: Likewise.
* elf32-or1k.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-s390.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-sh.c: Likewise.
* elf32-sh64.c: Likewise.
* elf32-spu.c: Likewise.
* elf32-tic6x.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-v850.c: Likewise.
* elf32-vax.c: Likewise.
* elf32-visium.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-ppc.c: Likewise.
* elf64-s390.c: Likewise.
* elf64-sh64.c: Likewise.
* elf64-x86-64.c: Likewise.
* elflink.c: Likewise.
* elfnn-aarch64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-tilegx.c: Likewise.
* linker.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* reloc.c: Likewise.
* reloc16.c: Likewise.
* simple.c: Likewise.
* vms-alpha.c: Likewise.
* xcofflink.c: Likewise.
* elf32-rl78.c (get_symbol_value, get_romstart, get_ramstart): Delete
status param. Adjust calls to these and linker callbacks throughout.
* elf32-rx.c: (get_symbol_value, get_gp, get_romstart,
get_ramstart): Delete status param. Adjust calls to these and
linker callbacks throughout.
ld/
* ldmain.c (multiple_definition, multiple_common, add_to_set,
constructor_callback, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc): Return void.
* emultempl/elf32.em: Adjust callback calls.
gdb/
* compile/compile-object-load.c (link_callbacks_multiple_definition,
link_callbacks_warning, link_callbacks_undefined_symbol,
link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
link_callbacks_reloc_dangerous,
link_callbacks_unattached_reloc): Return void.
2016-05-27 09:50:55 +02:00
|
|
|
(*info->callbacks->undefined_symbol)
|
2002-11-30 09:39:46 +01:00
|
|
|
(info, name, input_bfd, input_section, rel->r_offset, TRUE);
|
2002-07-17 16:15:52 +02:00
|
|
|
break;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
2002-07-17 16:15:52 +02:00
|
|
|
case bfd_reloc_outofrange:
|
|
|
|
msg = _("internal error: out of range error");
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* This is how ip2k_final_link_relocate tells us of a non-kosher
|
|
|
|
reference between insn & data address spaces. */
|
|
|
|
case bfd_reloc_notsupported:
|
|
|
|
if (sym != NULL) /* Only if it's not an unresolved symbol. */
|
|
|
|
msg = _("unsupported relocation between data/insn address spaces");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case bfd_reloc_dangerous:
|
|
|
|
msg = _("internal error: dangerous relocation");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
msg = _("internal error: unknown error");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg)
|
Return void from linker callbacks
The ldmain.c implementation of these linker callback functions always
return true, so any code handling a false return is dead. What's
more, some of the bfd backends abort if ever a false return is seen,
and there seems to be some confusion in gdb's compile-object-load.c.
The return value was never meant to be "oh yes, a multiple_definition
error occurred", but rather "out of memory or other catastrophic
failure".
This patch removes the status return on the callbacks that always
return true. I kept the return status for "notice" because that one
does happen to need to return "out of memory".
include/
* bfdlink.h (struct bfd_link_callbacks): Update comments.
Return void from multiple_definition, multiple_common,
add_to_set, constructor, warning, undefined_symbol,
reloc_overflow, reloc_dangerous and unattached_reloc.
bfd/
* aoutx.h: Adjust linker callback calls throughout file,
removing dead code.
* bout.c: Likewise.
* coff-alpha.c: Likewise.
* coff-arm.c: Likewise.
* coff-h8300.c: Likewise.
* coff-h8500.c: Likewise.
* coff-i960.c: Likewise.
* coff-mcore.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic80.c: Likewise.
* coff-w65.c: Likewise.
* coff-z80.c: Likewise.
* coff-z8k.c: Likewise.
* coff64-rs6000.c: Likewise.
* cofflink.c: Likewise.
* ecoff.c: Likewise.
* elf-bfd.h: Likewise.
* elf-m10200.c: Likewise.
* elf-m10300.c: Likewise.
* elf32-arc.c: Likewise.
* elf32-arm.c: Likewise.
* elf32-avr.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-cr16c.c: Likewise.
* elf32-cris.c: Likewise.
* elf32-crx.c: Likewise.
* elf32-d10v.c: Likewise.
* elf32-epiphany.c: Likewise.
* elf32-fr30.c: Likewise.
* elf32-frv.c: Likewise.
* elf32-ft32.c: Likewise.
* elf32-h8300.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-i370.c: Likewise.
* elf32-i386.c: Likewise.
* elf32-i860.c: Likewise.
* elf32-ip2k.c: Likewise.
* elf32-iq2000.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32c.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-m68k.c: Likewise.
* elf32-mep.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-microblaze.c: Likewise.
* elf32-moxie.c: Likewise.
* elf32-msp430.c: Likewise.
* elf32-mt.c: Likewise.
* elf32-nds32.c: Likewise.
* elf32-nios2.c: Likewise.
* elf32-or1k.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-s390.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-sh.c: Likewise.
* elf32-sh64.c: Likewise.
* elf32-spu.c: Likewise.
* elf32-tic6x.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-v850.c: Likewise.
* elf32-vax.c: Likewise.
* elf32-visium.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-ppc.c: Likewise.
* elf64-s390.c: Likewise.
* elf64-sh64.c: Likewise.
* elf64-x86-64.c: Likewise.
* elflink.c: Likewise.
* elfnn-aarch64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-tilegx.c: Likewise.
* linker.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* reloc.c: Likewise.
* reloc16.c: Likewise.
* simple.c: Likewise.
* vms-alpha.c: Likewise.
* xcofflink.c: Likewise.
* elf32-rl78.c (get_symbol_value, get_romstart, get_ramstart): Delete
status param. Adjust calls to these and linker callbacks throughout.
* elf32-rx.c: (get_symbol_value, get_gp, get_romstart,
get_ramstart): Delete status param. Adjust calls to these and
linker callbacks throughout.
ld/
* ldmain.c (multiple_definition, multiple_common, add_to_set,
constructor_callback, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc): Return void.
* emultempl/elf32.em: Adjust callback calls.
gdb/
* compile/compile-object-load.c (link_callbacks_multiple_definition,
link_callbacks_warning, link_callbacks_undefined_symbol,
link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
link_callbacks_reloc_dangerous,
link_callbacks_unattached_reloc): Return void.
2016-05-27 09:50:55 +02:00
|
|
|
(*info->callbacks->warning) (info, msg, name, input_bfd,
|
|
|
|
input_section, rel->r_offset);
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-07-17 16:15:52 +02:00
|
|
|
}
|
|
|
|
|
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 12:39:40 +02:00
|
|
|
#define TARGET_BIG_SYM ip2k_elf32_vec
|
2002-07-17 16:15:52 +02:00
|
|
|
#define TARGET_BIG_NAME "elf32-ip2k"
|
|
|
|
|
|
|
|
#define ELF_ARCH bfd_arch_ip2k
|
|
|
|
#define ELF_MACHINE_CODE EM_IP2K
|
2002-10-17 20:27:01 +02:00
|
|
|
#define ELF_MACHINE_ALT1 EM_IP2K_OLD
|
2003-01-03 09:21:43 +01:00
|
|
|
#define ELF_MAXPAGESIZE 1 /* No pages on the IP2K. */
|
2002-07-17 16:15:52 +02:00
|
|
|
|
|
|
|
#define elf_info_to_howto_rel NULL
|
|
|
|
#define elf_info_to_howto ip2k_info_to_howto_rela
|
|
|
|
|
|
|
|
#define elf_backend_can_gc_sections 1
|
2002-07-23 14:29:33 +02:00
|
|
|
#define elf_backend_rela_normal 1
|
2002-07-17 16:15:52 +02:00
|
|
|
#define elf_backend_relocate_section ip2k_elf_relocate_section
|
|
|
|
|
|
|
|
#define elf_symbol_leading_char '_'
|
|
|
|
#define bfd_elf32_bfd_reloc_type_lookup ip2k_reloc_type_lookup
|
2007-03-26 14:23:03 +02:00
|
|
|
#define bfd_elf32_bfd_reloc_name_lookup ip2k_reloc_name_lookup
|
2002-07-17 16:15:52 +02:00
|
|
|
#define bfd_elf32_bfd_relax_section ip2k_elf_relax_section
|
|
|
|
|
|
|
|
#include "elf32-target.h"
|