2000-02-28 19:56:11 +01:00
|
|
|
/* BFD back-end for MIPS PE COFF files.
|
2015-01-01 15:15:26 +01:00
|
|
|
Copyright (C) 1990-2015 Free Software Foundation, Inc.
|
2000-02-28 19:56:11 +01:00
|
|
|
Modified from coff-i386.c by DJ Delorie, dj@cygnus.com
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 16:26:43 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2005-04-21 09:45:39 +02:00
|
|
|
(at your option) any later version.
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 16:26:43 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
#define COFF_WITH_PE
|
2009-02-18 19:23:08 +01:00
|
|
|
/* pei-mips.c may have defined this to default off (0) before
|
|
|
|
including this file, so don't redefine if that's the case.
|
|
|
|
Otherwise we're generating objects, not executable images,
|
|
|
|
so we want to define it to default on. */
|
|
|
|
#ifndef COFF_LONG_SECTION_NAMES
|
2000-02-28 19:56:11 +01:00
|
|
|
#define COFF_LONG_SECTION_NAMES
|
2009-02-18 19:23:08 +01:00
|
|
|
#endif /* COFF_LONG_SECTION_NAMES */
|
2002-11-30 09:39:46 +01:00
|
|
|
#define PCRELOFFSET TRUE
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
2000-02-28 19:56:11 +01:00
|
|
|
#include "libbfd.h"
|
|
|
|
#include "coff/mipspe.h"
|
|
|
|
#include "coff/internal.h"
|
|
|
|
#include "coff/pe.h"
|
|
|
|
#include "libcoff.h"
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
#define COFF_DEFAULT_SECTION_ALIGNMENT_POWER 2
|
2000-02-28 19:56:11 +01:00
|
|
|
/* The page size is a guess based on ELF. */
|
|
|
|
|
|
|
|
#define COFF_PAGE_SIZE 0x1000
|
|
|
|
|
|
|
|
/* For some reason when using mips COFF the value stored in the .text
|
|
|
|
section for a reference to a common symbol is the value itself plus
|
|
|
|
any desired offset. Ian Taylor, Cygnus Support. */
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
/* If we are producing relocatable output, we need to do some
|
2000-02-28 19:56:11 +01:00
|
|
|
adjustments to the object file that are not done by the
|
|
|
|
bfd_perform_relocation function. This function is called by every
|
|
|
|
reloc type to make any required adjustments. */
|
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_mips_reloc (bfd *abfd,
|
|
|
|
arelent *reloc_entry,
|
|
|
|
asymbol *symbol,
|
|
|
|
void * data,
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED,
|
|
|
|
bfd *output_bfd,
|
|
|
|
char **error_message ATTRIBUTE_UNUSED)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
symvalue diff;
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
if (output_bfd == NULL)
|
2000-02-28 19:56:11 +01:00
|
|
|
return bfd_reloc_continue;
|
|
|
|
|
|
|
|
if (bfd_is_com_section (symbol->section))
|
|
|
|
{
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
/* We are relocating a common symbol. The current value in the
|
|
|
|
object file is ORIG + OFFSET, where ORIG is the value of the
|
|
|
|
common symbol as seen by the object file when it was compiled
|
|
|
|
(this may be zero if the symbol was undefined) and OFFSET is
|
|
|
|
the offset into the common symbol (normally zero, but may be
|
|
|
|
non-zero when referring to a field in a common structure).
|
|
|
|
ORIG is the negative of reloc_entry->addend, which is set by
|
|
|
|
the CALC_ADDEND macro below. We want to replace the value in
|
|
|
|
the object file with NEW + OFFSET, where NEW is the value of
|
|
|
|
the common symbol which we are going to put in the final
|
|
|
|
object file. NEW is symbol->value. */
|
|
|
|
diff = symbol->value + reloc_entry->addend;
|
|
|
|
#else
|
|
|
|
/* In PE mode, we do not offset the common symbol. */
|
|
|
|
diff = reloc_entry->addend;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
2005-04-21 09:45:39 +02:00
|
|
|
/* For some reason bfd_perform_relocation always effectively
|
|
|
|
ignores the addend for a COFF target when producing
|
|
|
|
relocatable output. This seems to be always wrong for 386
|
|
|
|
COFF, so we handle the addend here instead. */
|
|
|
|
diff = reloc_entry->addend;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
#define DOIT(x) \
|
|
|
|
x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + (diff >> howto->rightshift)) & howto->dst_mask))
|
|
|
|
|
|
|
|
if (diff != 0)
|
|
|
|
{
|
|
|
|
reloc_howto_type *howto = reloc_entry->howto;
|
|
|
|
unsigned char *addr = (unsigned char *) data + reloc_entry->address;
|
|
|
|
|
|
|
|
switch (howto->size)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
char x = bfd_get_8 (abfd, addr);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
DOIT (x);
|
|
|
|
bfd_put_8 (abfd, x, addr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
short x = bfd_get_16 (abfd, addr);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
DOIT (x);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_put_16 (abfd, (bfd_vma) x, addr);
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
long x = bfd_get_32 (abfd, addr);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
DOIT (x);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_put_32 (abfd, (bfd_vma) x, addr);
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now let bfd_perform_relocation finish everything up. */
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
2002-11-30 09:39:46 +01:00
|
|
|
/* Return TRUE if this relocation should
|
2001-01-02 19:58:44 +01:00
|
|
|
appear in the output .reloc section. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
in_reloc_p (bfd * abfd ATTRIBUTE_UNUSED, reloc_howto_type *howto)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
return ! howto->pc_relative && howto->type != MIPS_R_RVA;
|
2001-01-02 19:58:44 +01:00
|
|
|
}
|
2000-02-28 19:56:11 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PCRELOFFSET
|
2002-11-30 09:39:46 +01:00
|
|
|
#define PCRELOFFSET FALSE
|
2000-02-28 19:56:11 +01:00
|
|
|
#endif
|
|
|
|
|
2001-01-02 19:58:44 +01:00
|
|
|
static reloc_howto_type howto_table[] =
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
/* Reloc type 0 is ignored. The reloc reading code ensures that
|
|
|
|
this is a reference to the .abs section, which will cause
|
|
|
|
bfd_perform_relocation to do nothing. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_ABSOLUTE, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
0, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
8, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_dont, /* Complain_on_overflow. */
|
|
|
|
0, /* Special_function. */
|
|
|
|
"IGNORE", /* Name. */
|
|
|
|
FALSE, /* Partial_inplace. */
|
|
|
|
0, /* Src_mask. */
|
|
|
|
0, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* A 16 bit reference to a symbol, normally from a data section. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_REFHALF, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
1, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
16, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_bitfield, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"REFHALF", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffff, /* Src_mask. */
|
|
|
|
0xffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* A 32 bit reference to a symbol, normally from a data section. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_REFWORD, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
32, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_bitfield, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"REFWORD", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffffffff, /* Src_mask. */
|
|
|
|
0xffffffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* A 26 bit absolute jump address. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_JMPADDR, /* Type. */
|
|
|
|
2, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
26, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_dont, /* Complain_on_overflow. */
|
2000-02-28 19:56:11 +01:00
|
|
|
/* This needs complex overflow
|
|
|
|
detection, because the upper four
|
|
|
|
bits must match the PC. */
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"JMPADDR", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0x3ffffff, /* Src_mask. */
|
|
|
|
0x3ffffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* The high 16 bits of a symbol value. Handled by the function
|
|
|
|
mips_refhi_reloc. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_REFHI, /* Type. */
|
|
|
|
16, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
16, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_bitfield, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"REFHI", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffff, /* Src_mask. */
|
|
|
|
0xffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* The low 16 bits of a symbol value. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_REFLO, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
16, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_dont, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"REFLO", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffff, /* Src_mask. */
|
|
|
|
0xffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* A reference to an offset from the gp register. Handled by the
|
|
|
|
function mips_gprel_reloc. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_GPREL, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
16, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_signed, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"GPREL", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffff, /* Src_mask. */
|
|
|
|
0xffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* A reference to a literal using an offset from the gp register.
|
|
|
|
Handled by the function mips_gprel_reloc. */
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_LITERAL, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
16, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_signed, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"LITERAL", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffff, /* Src_mask. */
|
|
|
|
0xffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2000-03-01 21:39:07 +01:00
|
|
|
EMPTY_HOWTO (8),
|
|
|
|
EMPTY_HOWTO (9),
|
|
|
|
EMPTY_HOWTO (10),
|
|
|
|
EMPTY_HOWTO (11),
|
|
|
|
EMPTY_HOWTO (12),
|
|
|
|
EMPTY_HOWTO (13),
|
|
|
|
EMPTY_HOWTO (14),
|
|
|
|
EMPTY_HOWTO (15),
|
|
|
|
EMPTY_HOWTO (16),
|
|
|
|
EMPTY_HOWTO (17),
|
|
|
|
EMPTY_HOWTO (18),
|
|
|
|
EMPTY_HOWTO (19),
|
|
|
|
EMPTY_HOWTO (20),
|
|
|
|
EMPTY_HOWTO (21),
|
|
|
|
EMPTY_HOWTO (22),
|
|
|
|
EMPTY_HOWTO (23),
|
|
|
|
EMPTY_HOWTO (24),
|
|
|
|
EMPTY_HOWTO (25),
|
|
|
|
EMPTY_HOWTO (26),
|
|
|
|
EMPTY_HOWTO (27),
|
|
|
|
EMPTY_HOWTO (28),
|
|
|
|
EMPTY_HOWTO (29),
|
|
|
|
EMPTY_HOWTO (30),
|
|
|
|
EMPTY_HOWTO (31),
|
|
|
|
EMPTY_HOWTO (32),
|
|
|
|
EMPTY_HOWTO (33),
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_RVA, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
32, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_bitfield, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"rva32", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffffffff, /* Src_mask. */
|
|
|
|
0xffffffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-03-01 21:39:07 +01:00
|
|
|
EMPTY_HOWTO (35),
|
|
|
|
EMPTY_HOWTO (36),
|
2005-04-21 09:45:39 +02:00
|
|
|
HOWTO (MIPS_R_PAIR, /* Type. */
|
|
|
|
0, /* Rightshift. */
|
|
|
|
2, /* Size (0 = byte, 1 = short, 2 = long). */
|
|
|
|
32, /* Bitsize. */
|
|
|
|
FALSE, /* PC_relative. */
|
|
|
|
0, /* Bitpos. */
|
|
|
|
complain_overflow_bitfield, /* Complain_on_overflow. */
|
|
|
|
coff_mips_reloc, /* Special_function. */
|
|
|
|
"PAIR", /* Name. */
|
|
|
|
TRUE, /* Partial_inplace. */
|
|
|
|
0xffffffff, /* Src_mask. */
|
|
|
|
0xffffffff, /* Dst_mask. */
|
|
|
|
FALSE), /* Pcrel_offset. */
|
2000-02-28 19:56:11 +01:00
|
|
|
};
|
|
|
|
|
2014-11-11 12:06:37 +01:00
|
|
|
#define NUM_HOWTOS (sizeof (howto_table) / sizeof (howto_table[0]))
|
2014-11-10 15:18:45 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
/* Turn a howto into a reloc nunmber. */
|
|
|
|
|
|
|
|
#define SELECT_RELOC(x, howto) { x.r_type = howto->type; }
|
|
|
|
#define BADMAG(x) MIPSBADMAG (x)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
/* Customize coffcode.h. */
|
|
|
|
#define MIPS 1
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2014-11-26 15:11:23 +01:00
|
|
|
#define RTYPE2HOWTO(cache_ptr, dst) \
|
|
|
|
((cache_ptr)->howto = \
|
|
|
|
((dst)->r_type < NUM_HOWTOS \
|
|
|
|
? howto_table + (dst)->r_type \
|
|
|
|
: NULL))
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* Compute the addend of a reloc. If the reloc is to a common symbol,
|
|
|
|
the object file contains the value of the common symbol. By the
|
|
|
|
time this is called, the linker may be using a different symbol
|
|
|
|
from a different object file with a different value. Therefore, we
|
|
|
|
hack wildly to locate the original symbol from this file so that we
|
|
|
|
can make the correct adjustment. This macro sets coffsym to the
|
|
|
|
symbol from the original file, and uses it to set the addend value
|
|
|
|
correctly. If this is not a common symbol, the usual addend
|
|
|
|
calculation is done, except that an additional tweak is needed for
|
|
|
|
PC relative relocs.
|
|
|
|
FIXME: This macro refers to symbols and asect; these are from the
|
|
|
|
calling function, not the macro arguments. */
|
|
|
|
|
|
|
|
#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
|
|
|
|
{ \
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_symbol_type *coffsym = NULL; \
|
2000-02-28 19:56:11 +01:00
|
|
|
if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
|
|
|
|
coffsym = (obj_symbols (abfd) \
|
|
|
|
+ (cache_ptr->sym_ptr_ptr - symbols)); \
|
|
|
|
else if (ptr) \
|
Don't always build coffgen.o
Removes a bunch of unused functions from libbfd when building ELF or
AOUT. Split off the bits we need externally when not building a COFF
target into coff-bfd.c and coff-bfd.h.
bfd/
* Makefile.am (BFD32_LIBS, BFD32_LIBS_CFILES): Remove dwarf2
and coffgen. Add coff-bfd. Sort.
(BFD32_BACKENDS, BFD32_BACKENDS_CFILES): Add coffgen and dwarf2.
* bfd-in.h (bfd_coff_get_syment, bfd_coff_get_auxent): Delete.
(struct coff_comdat_info, bfd_coff_get_comdat_section): Delete.
* coffgen.c (coff_symbol_from): Move to coff-bfd.h as macro,
without unused param. Update uses.
(bfd_coff_get_comdat_section): Move to coff-bfd.h as macro.
(bfd_coff_get_syment, bfd_coff_get_auxent): Move to coff-bfd.c.
* libcoff-in.h: #include "coff-bfd.h".
(struct coff_section_tdata, coff_section_data): Move to coff-bfd.h.
(coff_symbol_from): Delete.
* coff-bfd.c: New file.
* coff-bfd.h: New file.
* coff-i386.c: Update coff_symbol_from occurrences.
* coff-i960.c: Likewise.
* coff-m68k.c: Likewise.
* coff-sh.c: Likewise.
* coff-x86_64.c: Likewise.
* coffcode.h: Likewise.
* pe-mips.c: Likewise.
* configure.ac (elf): Add dwarf2.lo.
(coffgen, coff, ecoff, xcoff): Define. Use when mapping bfd
target vectors to .o files. Add dwarf2 for mach-o targets.
Fix the sh target FIXME.
* po/SRC-POTFILES.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
* libcoff.h: Regenerate.
binutils/
* objdump.c: #include "coff-bfd.h".
ld/
* ldmisc.c: #include "coff-bfd.h"
2014-12-10 12:14:34 +01:00
|
|
|
coffsym = coff_symbol_from (ptr); \
|
2005-04-21 09:45:39 +02:00
|
|
|
if (coffsym != NULL \
|
2000-02-28 19:56:11 +01:00
|
|
|
&& coffsym->native->u.syment.n_scnum == 0) \
|
|
|
|
cache_ptr->addend = - coffsym->native->u.syment.n_value; \
|
|
|
|
else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
|
2005-04-21 09:45:39 +02:00
|
|
|
&& ptr->section != NULL) \
|
2000-02-28 19:56:11 +01:00
|
|
|
cache_ptr->addend = - (ptr->section->vma + ptr->value); \
|
|
|
|
else \
|
|
|
|
cache_ptr->addend = 0; \
|
2014-11-10 15:18:45 +01:00
|
|
|
if (ptr && reloc.r_type < NUM_HOWTOS \
|
|
|
|
&& howto_table[reloc.r_type].pc_relative) \
|
2000-02-28 19:56:11 +01:00
|
|
|
cache_ptr->addend += asect->vma; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert an rtype to howto for the COFF backend linker. */
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_mips_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asection *sec,
|
|
|
|
struct internal_reloc *rel,
|
|
|
|
struct coff_link_hash_entry *h,
|
|
|
|
struct internal_syment *sym,
|
|
|
|
bfd_vma *addendp)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
|
|
|
howto = howto_table + rel->r_type;
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
*addendp = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
*addendp += sec->vma;
|
|
|
|
|
|
|
|
if (sym != NULL && sym->n_scnum == 0 && sym->n_value != 0)
|
|
|
|
{
|
|
|
|
/* This is a common symbol. The section contents include the
|
|
|
|
size (sym->n_value) as an addend. The relocate_section
|
|
|
|
function will be adding in the final value of the symbol. We
|
|
|
|
need to subtract out the current size in order to get the
|
|
|
|
correct result. */
|
2001-01-02 19:58:44 +01:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
BFD_ASSERT (h != NULL);
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
/* I think we *do* want to bypass this. If we don't, I have
|
|
|
|
seen some data parameters get the wrong relocation address.
|
|
|
|
If I link two versions with and without this section bypassed
|
|
|
|
and then do a binary comparison, the addresses which are
|
|
|
|
different can be looked up in the map. The case in which
|
|
|
|
this section has been bypassed has addresses which correspond
|
|
|
|
to values I can find in the map. */
|
|
|
|
*addendp -= sym->n_value;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
/* If the output symbol is common (in which case this must be a
|
2003-06-25 08:40:27 +02:00
|
|
|
relocatable link), we need to add in the final size of the
|
2000-02-28 19:56:11 +01:00
|
|
|
common symbol. */
|
2001-01-02 19:58:44 +01:00
|
|
|
if (h != NULL && h->root.type == bfd_link_hash_common)
|
2000-02-28 19:56:11 +01:00
|
|
|
*addendp += h->root.u.c.size;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
if (howto->pc_relative)
|
|
|
|
{
|
|
|
|
*addendp -= 4;
|
|
|
|
|
|
|
|
/* If the symbol is defined, then the generic code is going to
|
|
|
|
add back the symbol value in order to cancel out an
|
|
|
|
adjustment it made to the addend. However, we set the addend
|
|
|
|
to 0 at the start of this function. We need to adjust here,
|
|
|
|
to avoid the adjustment the generic code will make. FIXME:
|
|
|
|
This is getting a bit hackish. */
|
|
|
|
if (sym != NULL && sym->n_scnum != 0)
|
|
|
|
*addendp -= sym->n_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rel->r_type == MIPS_R_RVA)
|
2005-04-21 09:45:39 +02:00
|
|
|
*addendp -= pe_data (sec->output_section->owner)->pe_opthdr.ImageBase;
|
2000-02-28 19:56:11 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return howto;
|
|
|
|
}
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
#define coff_rtype_to_howto coff_mips_rtype_to_howto
|
|
|
|
#define coff_bfd_reloc_type_lookup coff_mips_reloc_type_lookup
|
2007-03-26 14:23:03 +02:00
|
|
|
#define coff_bfd_reloc_name_lookup coff_mips_reloc_name_lookup
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
/* Get the howto structure for a generic reloc type. */
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_mips_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
bfd_reloc_code_real_type code)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
int mips_type;
|
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
mips_type = MIPS_R_REFHALF;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
case BFD_RELOC_CTOR:
|
|
|
|
mips_type = MIPS_R_REFWORD;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_MIPS_JMP:
|
|
|
|
mips_type = MIPS_R_JMPADDR;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_HI16_S:
|
|
|
|
mips_type = MIPS_R_REFHI;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_LO16:
|
|
|
|
mips_type = MIPS_R_REFLO;
|
|
|
|
break;
|
2001-12-02 14:14:48 +01:00
|
|
|
case BFD_RELOC_GPREL16:
|
2000-02-28 19:56:11 +01:00
|
|
|
mips_type = MIPS_R_GPREL;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_MIPS_LITERAL:
|
|
|
|
mips_type = MIPS_R_LITERAL;
|
|
|
|
break;
|
|
|
|
case BFD_RELOC_RVA:
|
|
|
|
mips_type = MIPS_R_RVA;
|
|
|
|
break;
|
|
|
|
default:
|
2005-04-21 09:45:39 +02:00
|
|
|
return NULL;
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
return & howto_table [mips_type];
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
|
2007-03-26 14:23:03 +02:00
|
|
|
static reloc_howto_type *
|
|
|
|
coff_mips_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
const char *r_name)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2014-11-10 15:18:45 +01:00
|
|
|
for (i = 0; i < NUM_HOWTOS; i++)
|
2007-03-26 14:23:03 +02:00
|
|
|
if (howto_table[i].name != NULL
|
|
|
|
&& strcasecmp (howto_table[i].name, r_name) == 0)
|
|
|
|
return &howto_table[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
mips_swap_reloc_in (bfd * abfd, void * src, void * dst)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
static struct internal_reloc pair_prev;
|
|
|
|
RELOC *reloc_src = (RELOC *) src;
|
|
|
|
struct internal_reloc *reloc_dst = (struct internal_reloc *) dst;
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
reloc_dst->r_vaddr = H_GET_32 (abfd, reloc_src->r_vaddr);
|
|
|
|
reloc_dst->r_symndx = H_GET_S32 (abfd, reloc_src->r_symndx);
|
|
|
|
reloc_dst->r_type = H_GET_16 (abfd, reloc_src->r_type);
|
2000-02-28 19:56:11 +01:00
|
|
|
reloc_dst->r_size = 0;
|
|
|
|
reloc_dst->r_extern = 0;
|
|
|
|
reloc_dst->r_offset = 0;
|
|
|
|
|
|
|
|
switch (reloc_dst->r_type)
|
|
|
|
{
|
|
|
|
case MIPS_R_REFHI:
|
|
|
|
pair_prev = *reloc_dst;
|
|
|
|
break;
|
|
|
|
case MIPS_R_PAIR:
|
|
|
|
reloc_dst->r_offset = reloc_dst->r_symndx;
|
|
|
|
if (reloc_dst->r_offset & 0x8000)
|
|
|
|
reloc_dst->r_offset -= 0x10000;
|
|
|
|
reloc_dst->r_symndx = pair_prev.r_symndx;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
2005-04-21 09:45:39 +02:00
|
|
|
mips_swap_reloc_out (bfd * abfd, void * src, void * dst)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
static bfd_vma prev_addr = 0;
|
|
|
|
struct internal_reloc *reloc_src = (struct internal_reloc *)src;
|
|
|
|
struct external_reloc *reloc_dst = (struct external_reloc *)dst;
|
|
|
|
|
|
|
|
switch (reloc_src->r_type)
|
|
|
|
{
|
|
|
|
case MIPS_R_REFHI:
|
|
|
|
prev_addr = reloc_src->r_vaddr;
|
|
|
|
break;
|
|
|
|
case MIPS_R_REFLO:
|
|
|
|
if (reloc_src->r_vaddr == prev_addr)
|
|
|
|
{
|
|
|
|
/* FIXME: only slightly hackish. If we see a REFLO pointing to
|
|
|
|
the same address as a REFHI, we assume this is the matching
|
|
|
|
PAIR reloc and output it accordingly. The symndx is really
|
|
|
|
the low 16 bits of the addend */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
H_PUT_32 (abfd, reloc_src->r_vaddr, reloc_dst->r_vaddr);
|
|
|
|
H_PUT_32 (abfd, reloc_src->r_symndx, reloc_dst->r_symndx);
|
|
|
|
H_PUT_16 (abfd, MIPS_R_PAIR, reloc_dst->r_type);
|
2000-02-28 19:56:11 +01:00
|
|
|
return RELSZ;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
H_PUT_32 (abfd, reloc_src->r_vaddr, reloc_dst->r_vaddr);
|
|
|
|
H_PUT_32 (abfd, reloc_src->r_symndx, reloc_dst->r_symndx);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
H_PUT_16 (abfd, reloc_src->r_type, reloc_dst->r_type);
|
2000-02-28 19:56:11 +01:00
|
|
|
return RELSZ;
|
|
|
|
}
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
#define coff_swap_reloc_in mips_swap_reloc_in
|
|
|
|
#define coff_swap_reloc_out mips_swap_reloc_out
|
2000-02-28 19:56:11 +01:00
|
|
|
#define NO_COFF_RELOCS
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_pe_mips_relocate_section (bfd *output_bfd,
|
|
|
|
struct bfd_link_info *info,
|
|
|
|
bfd *input_bfd,
|
|
|
|
asection *input_section,
|
|
|
|
bfd_byte *contents,
|
|
|
|
struct internal_reloc *relocs,
|
|
|
|
struct internal_syment *syms,
|
|
|
|
asection **sections)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
struct internal_reloc *rel;
|
|
|
|
struct internal_reloc *rel_end;
|
|
|
|
unsigned int i;
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
if (info->relocatable)
|
2005-04-21 09:45:39 +02:00
|
|
|
{
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("%B: `ld -r' not supported with PE MIPS objects\n"), input_bfd);
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
BFD_ASSERT (input_bfd->xvec->byteorder
|
|
|
|
== output_bfd->xvec->byteorder);
|
|
|
|
|
|
|
|
rel = relocs;
|
|
|
|
rel_end = rel + input_section->reloc_count;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
for (i = 0; rel < rel_end; rel++, i++)
|
|
|
|
{
|
|
|
|
long symndx;
|
|
|
|
struct coff_link_hash_entry *h;
|
|
|
|
struct internal_syment *sym;
|
|
|
|
bfd_vma addend = 0;
|
|
|
|
bfd_vma val, tmp, targ, src, low;
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
unsigned char *mem = contents + rel->r_vaddr;
|
|
|
|
|
|
|
|
symndx = rel->r_symndx;
|
|
|
|
|
|
|
|
if (symndx == -1)
|
|
|
|
{
|
|
|
|
h = NULL;
|
|
|
|
sym = NULL;
|
|
|
|
}
|
|
|
|
else
|
2001-01-02 19:58:44 +01:00
|
|
|
{
|
2000-02-28 19:56:11 +01:00
|
|
|
h = obj_coff_sym_hashes (input_bfd)[symndx];
|
|
|
|
sym = syms + symndx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* COFF treats common symbols in one of two ways. Either the
|
|
|
|
size of the symbol is included in the section contents, or it
|
|
|
|
is not. We assume that the size is not included, and force
|
|
|
|
the rtype_to_howto function to adjust the addend as needed. */
|
|
|
|
|
|
|
|
if (sym != NULL && sym->n_scnum != 0)
|
|
|
|
addend = - sym->n_value;
|
|
|
|
else
|
|
|
|
addend = 0;
|
|
|
|
|
|
|
|
howto = bfd_coff_rtype_to_howto (input_bfd, input_section, rel, h,
|
|
|
|
sym, &addend);
|
|
|
|
if (howto == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
/* If we are doing a relocatable link, then we can just ignore
|
2000-02-28 19:56:11 +01:00
|
|
|
a PC relative reloc that is pcrel_offset. It will already
|
2003-06-25 08:40:27 +02:00
|
|
|
have the correct value. If this is not a relocatable link,
|
2000-02-28 19:56:11 +01:00
|
|
|
then we should ignore the symbol value. */
|
|
|
|
if (howto->pc_relative && howto->pcrel_offset)
|
|
|
|
{
|
2003-06-25 08:40:27 +02:00
|
|
|
if (info->relocatable)
|
2000-02-28 19:56:11 +01:00
|
|
|
continue;
|
|
|
|
if (sym != NULL && sym->n_scnum != 0)
|
|
|
|
addend += sym->n_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
val = 0;
|
|
|
|
|
|
|
|
if (h == NULL)
|
|
|
|
{
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
if (symndx == -1)
|
|
|
|
{
|
|
|
|
sec = bfd_abs_section_ptr;
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sec = sections[symndx];
|
|
|
|
val = (sec->output_section->vma
|
|
|
|
+ sec->output_offset
|
|
|
|
+ sym->n_value);
|
|
|
|
if (! obj_pe (input_bfd))
|
|
|
|
val -= sec->vma;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (h->root.type == bfd_link_hash_defined
|
|
|
|
|| h->root.type == bfd_link_hash_defweak)
|
|
|
|
{
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
sec = h->root.u.def.section;
|
|
|
|
val = (h->root.u.def.value
|
|
|
|
+ sec->output_section->vma
|
|
|
|
+ sec->output_offset);
|
|
|
|
}
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
else if (! info->relocatable)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
if (! ((*info->callbacks->undefined_symbol)
|
|
|
|
(info, h->root.root.string, input_bfd, input_section,
|
2002-11-30 09:39:46 +01:00
|
|
|
rel->r_vaddr - input_section->vma, TRUE)))
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
src = rel->r_vaddr + input_section->output_section->vma
|
|
|
|
+ input_section->output_offset;
|
|
|
|
|
|
|
|
/* OK, at this point the following variables are set up:
|
|
|
|
src = VMA of the memory we're fixing up
|
|
|
|
mem = pointer to memory we're fixing up
|
2005-04-21 09:45:39 +02:00
|
|
|
val = VMA of what we need to refer to. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
#define UI(x) (*_bfd_error_handler) (_("%B: unimplemented %s\n"), \
|
|
|
|
input_bfd, x); \
|
2000-02-28 19:56:11 +01:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
|
|
|
|
switch (rel->r_type)
|
|
|
|
{
|
|
|
|
case MIPS_R_ABSOLUTE:
|
2005-04-21 09:45:39 +02:00
|
|
|
/* Ignore these. */
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_REFHALF:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("refhalf");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_REFWORD:
|
2005-04-21 09:45:39 +02:00
|
|
|
tmp = bfd_get_32 (input_bfd, mem);
|
2001-01-02 19:58:44 +01:00
|
|
|
/* printf ("refword: src=%08x targ=%08x+%08x\n", src, tmp, val); */
|
2000-02-28 19:56:11 +01:00
|
|
|
tmp += val;
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd_put_32 (input_bfd, tmp, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_JMPADDR:
|
2005-04-21 09:45:39 +02:00
|
|
|
tmp = bfd_get_32 (input_bfd, mem);
|
|
|
|
targ = val + (tmp & 0x03ffffff) * 4;
|
2000-03-01 21:39:07 +01:00
|
|
|
if ((src & 0xf0000000) != (targ & 0xf0000000))
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
(*_bfd_error_handler) (_("%B: jump too far away\n"), input_bfd);
|
2000-02-28 19:56:11 +01:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
tmp &= 0xfc000000;
|
2005-04-21 09:45:39 +02:00
|
|
|
tmp |= (targ / 4) & 0x3ffffff;
|
|
|
|
bfd_put_32 (input_bfd, tmp, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_REFHI:
|
2005-04-21 09:45:39 +02:00
|
|
|
tmp = bfd_get_32 (input_bfd, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
switch (rel[1].r_type)
|
|
|
|
{
|
|
|
|
case MIPS_R_PAIR:
|
|
|
|
/* MS PE object */
|
|
|
|
targ = val + rel[1].r_offset + ((tmp & 0xffff) << 16);
|
|
|
|
break;
|
|
|
|
case MIPS_R_REFLO:
|
|
|
|
/* GNU COFF object */
|
2005-04-21 09:45:39 +02:00
|
|
|
low = bfd_get_32 (input_bfd, contents + rel[1].r_vaddr);
|
2000-02-28 19:56:11 +01:00
|
|
|
low &= 0xffff;
|
|
|
|
if (low & 0x8000)
|
|
|
|
low -= 0x10000;
|
|
|
|
targ = val + low + ((tmp & 0xffff) << 16);
|
|
|
|
break;
|
|
|
|
default:
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
(*_bfd_error_handler) (_("%B: bad pair/reflo after refhi\n"),
|
|
|
|
input_bfd);
|
2000-02-28 19:56:11 +01:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
tmp &= 0xffff0000;
|
|
|
|
tmp |= (targ >> 16) & 0xffff;
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd_put_32 (input_bfd, tmp, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_REFLO:
|
2005-04-21 09:45:39 +02:00
|
|
|
tmp = bfd_get_32 (input_bfd, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
targ = val + (tmp & 0xffff);
|
2001-01-02 19:58:44 +01:00
|
|
|
/* printf ("refword: src=%08x targ=%08x\n", src, targ); */
|
2000-02-28 19:56:11 +01:00
|
|
|
tmp &= 0xffff0000;
|
|
|
|
tmp |= targ & 0xffff;
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd_put_32 (input_bfd, tmp, mem);
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_GPREL:
|
|
|
|
case MIPS_R_LITERAL:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("gprel");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_SECTION:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("section");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_SECREL:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("secrel");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_SECRELLO:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("secrello");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_SECRELHI:
|
2005-04-21 09:45:39 +02:00
|
|
|
UI ("secrelhi");
|
2000-02-28 19:56:11 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_RVA:
|
|
|
|
tmp = bfd_get_32 (input_bfd, mem);
|
2001-01-02 19:58:44 +01:00
|
|
|
/* printf ("rva: src=%08x targ=%08x+%08x\n", src, tmp, val); */
|
2000-02-28 19:56:11 +01:00
|
|
|
tmp += val
|
2000-03-01 21:39:07 +01:00
|
|
|
- pe_data (input_section->output_section->owner)->pe_opthdr.ImageBase;
|
2000-02-28 19:56:11 +01:00
|
|
|
bfd_put_32 (input_bfd, tmp, mem);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIPS_R_PAIR:
|
|
|
|
/* ignore these */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define coff_relocate_section coff_pe_mips_relocate_section
|
|
|
|
|
|
|
|
#ifdef TARGET_UNDERSCORE
|
|
|
|
|
|
|
|
/* If mips gcc uses underscores for symbol names, then it does not use
|
|
|
|
a leading dot for local labels, so if TARGET_UNDERSCORE is defined
|
|
|
|
we treat all symbols starting with L as local. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
coff_mips_is_local_label_name (bfd *abfd, const char *name)
|
2000-02-28 19:56:11 +01:00
|
|
|
{
|
|
|
|
if (name[0] == 'L')
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
return _bfd_coff_is_local_label_name (abfd, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define coff_bfd_is_local_label_name coff_mips_is_local_label_name
|
|
|
|
|
|
|
|
#endif /* TARGET_UNDERSCORE */
|
|
|
|
|
|
|
|
#define COFF_NO_HACK_SCNHDR_SIZE
|
|
|
|
|
2008-07-18 13:30:22 +02:00
|
|
|
#ifndef bfd_pe_print_pdata
|
|
|
|
#define bfd_pe_print_pdata NULL
|
|
|
|
#endif
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
#include "coffcode.h"
|
|
|
|
|
|
|
|
const bfd_target
|
|
|
|
#ifdef TARGET_SYM
|
|
|
|
TARGET_SYM =
|
|
|
|
#else
|
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
|
|
|
mips_pe_le_vec =
|
2000-02-28 19:56:11 +01:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef TARGET_NAME
|
|
|
|
TARGET_NAME,
|
|
|
|
#else
|
2005-04-21 09:45:39 +02:00
|
|
|
"pe-mips", /* Name. */
|
2000-02-28 19:56:11 +01:00
|
|
|
#endif
|
|
|
|
bfd_target_coff_flavour,
|
2005-04-21 09:45:39 +02:00
|
|
|
BFD_ENDIAN_LITTLE, /* Data byte order is little. */
|
|
|
|
BFD_ENDIAN_LITTLE, /* Header byte order is little. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
(HAS_RELOC | EXEC_P | /* Object flags. */
|
2000-02-28 19:56:11 +01:00
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
2005-04-21 09:45:39 +02:00
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* Section flags. */
|
2000-02-28 19:56:11 +01:00
|
|
|
| SEC_CODE | SEC_DATA),
|
|
|
|
#else
|
2005-04-21 09:45:39 +02:00
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* Section flags. */
|
2000-02-28 19:56:11 +01:00
|
|
|
| SEC_CODE | SEC_DATA
|
|
|
|
| SEC_LINK_ONCE | SEC_LINK_DUPLICATES),
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TARGET_UNDERSCORE
|
2005-04-21 09:45:39 +02:00
|
|
|
TARGET_UNDERSCORE, /* Leading underscore. */
|
2000-02-28 19:56:11 +01:00
|
|
|
#else
|
|
|
|
0, /* leading underscore */
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
'/', /* AR_pad_char. */
|
|
|
|
15, /* AR_max_namelen. */
|
* targets.c (bfd_target): Make ar_max_namelen an unsigned char.
Add match_priority.
* configure.in: Bump bfd version.
* elfcode.h (elf_object_p): Delete hacks preventing match of
EM_NONE and ELFOSABI_NONE targets when a better match exists.
* elfxx-target.h (elf_match_priority): Define and use.
* format.c (bfd_check_format_matches): Use target match_priority
to choose best of multiple matching targets. In cases with multiple
matches rerun _bfd_check_format if we don't choose the last match.
* aout-adobe.c, * aout-arm.c, * aout-target.h, * aout-tic30.c,
* binary.c, * bout.c, * coff-alpha.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-ia64.c, * coff-mips.c, * coff-or32.c,
* coff-ppc.c, * coff-rs6000.c, * coff-sh.c, * coff-tic30.c,
* coff-tic54x.c, * coff-x86_64.c, * coff64-rs6000.c, * coffcode.h,
* i386msdos.c, * i386os9k.c, * ieee.c, * ihex.c, * mach-o-target.c,
* mipsbsd.c, * mmo.c, * nlm-target.h, * oasys.c, * pdp11.c,
* pe-mips.c, * pef.c, * plugin.c, * ppcboot.c, * som.c, * srec.c,
* tekhex.c, * trad-core.c, * verilog.c, * versados.c, * vms-alpha.c,
* vms-lib.c, * xsym.c: Init match_priority field.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2011-06-06 03:26:05 +02:00
|
|
|
0, /* match priority. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Data. */
|
2000-02-28 19:56:11 +01:00
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Headers. */
|
|
|
|
|
|
|
|
/* Note that we allow an object file to be treated as a core file as well. */
|
|
|
|
{_bfd_dummy_target, coff_object_p, /* bfd_check_format. */
|
|
|
|
bfd_generic_archive_p, coff_object_p},
|
|
|
|
{bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format. */
|
|
|
|
bfd_false},
|
|
|
|
{bfd_false, coff_write_object_contents, /* bfd_write_contents. */
|
|
|
|
_bfd_write_archive_contents, bfd_false},
|
|
|
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff),
|
|
|
|
BFD_JUMP_TABLE_COPY (coff),
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore),
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff),
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff),
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff),
|
|
|
|
BFD_JUMP_TABLE_LINK (coff),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
NULL,
|
2001-01-02 19:58:44 +01:00
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
COFF_SWAP_TABLE
|
|
|
|
};
|