1999-05-03 09:29:11 +02:00
|
|
|
/* ARC-specific support for 32-bit ELF
|
2001-03-08 22:04:02 +01:00
|
|
|
Copyright 1994, 1995, 1997, 1999, 2001 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Contributed by Doug Evans (dje@cygnus.com).
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
#include "elf/arc.h"
|
2001-10-02 16:28:42 +02:00
|
|
|
#include "libiberty.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static reloc_howto_type *bfd_elf32_bfd_reloc_type_lookup
|
2001-01-11 22:20:20 +01:00
|
|
|
PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
|
1999-05-03 09:29:11 +02:00
|
|
|
static void arc_info_to_howto_rel
|
|
|
|
PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
|
2001-01-11 22:20:20 +01:00
|
|
|
static boolean arc_elf_object_p
|
|
|
|
PARAMS ((bfd *));
|
|
|
|
static void arc_elf_final_write_processing
|
|
|
|
PARAMS ((bfd *, boolean));
|
2001-10-02 16:28:42 +02:00
|
|
|
static bfd_reloc_status_type arc_elf_b22_pcrel
|
|
|
|
PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Try to minimize the amount of space occupied by relocation tables
|
|
|
|
on the ROM (not that the ROM won't be swamped by other ELF overhead). */
|
2001-01-11 22:20:20 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#define USE_REL
|
|
|
|
|
|
|
|
static reloc_howto_type elf_arc_howto_table[] =
|
|
|
|
{
|
|
|
|
/* This reloc does nothing. */
|
2001-01-11 22:20:20 +01:00
|
|
|
HOWTO (R_ARC_NONE, /* type */
|
|
|
|
0, /* rightshift */
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
32, /* bitsize */
|
|
|
|
false, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_ARC_NONE", /* name */
|
2001-10-06 08:41:47 +02:00
|
|
|
true, /* partial_inplace */
|
2001-01-11 22:20:20 +01:00
|
|
|
0, /* src_mask */
|
|
|
|
0, /* dst_mask */
|
|
|
|
false), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* A standard 32 bit relocation. */
|
2001-01-11 22:20:20 +01:00
|
|
|
HOWTO (R_ARC_32, /* type */
|
2001-05-12 17:14:53 +02:00
|
|
|
0, /* rightshift */
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
32, /* bitsize */
|
|
|
|
false, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
2001-01-11 22:20:20 +01:00
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
2001-05-12 17:14:53 +02:00
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
2001-01-11 22:20:20 +01:00
|
|
|
"R_ARC_32", /* name */
|
2001-10-06 08:41:47 +02:00
|
|
|
true, /* partial_inplace */
|
2001-05-12 17:14:53 +02:00
|
|
|
0xffffffff, /* src_mask */
|
|
|
|
0xffffffff, /* dst_mask */
|
|
|
|
false), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* A 26 bit absolute branch, right shifted by 2. */
|
2001-01-11 22:20:20 +01:00
|
|
|
HOWTO (R_ARC_B26, /* type */
|
|
|
|
2, /* rightshift */
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
26, /* bitsize */
|
|
|
|
false, /* pc_relative */
|
|
|
|
0, /* bitpos */
|
|
|
|
complain_overflow_bitfield, /* complain_on_overflow */
|
|
|
|
bfd_elf_generic_reloc, /* special_function */
|
|
|
|
"R_ARC_B26", /* name */
|
2001-10-06 08:41:47 +02:00
|
|
|
true, /* partial_inplace */
|
2001-01-11 22:20:20 +01:00
|
|
|
0x00ffffff, /* src_mask */
|
|
|
|
0x00ffffff, /* dst_mask */
|
|
|
|
false), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* A relative 22 bit branch; bits 21-2 are stored in bits 26-7. */
|
2001-01-11 22:20:20 +01:00
|
|
|
HOWTO (R_ARC_B22_PCREL, /* type */
|
|
|
|
2, /* rightshift */
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
22, /* bitsize */
|
|
|
|
true, /* pc_relative */
|
|
|
|
7, /* bitpos */
|
|
|
|
complain_overflow_signed, /* complain_on_overflow */
|
2001-10-02 16:28:42 +02:00
|
|
|
arc_elf_b22_pcrel, /* special_function */
|
2001-01-11 22:20:20 +01:00
|
|
|
"R_ARC_B22_PCREL", /* name */
|
2001-08-09 11:00:58 +02:00
|
|
|
true, /* partial_inplace */
|
2001-01-11 22:20:20 +01:00
|
|
|
0x07ffff80, /* src_mask */
|
|
|
|
0x07ffff80, /* dst_mask */
|
2001-08-09 11:00:58 +02:00
|
|
|
false), /* pcrel_offset */
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Map BFD reloc types to ARC ELF reloc types. */
|
|
|
|
|
|
|
|
struct arc_reloc_map
|
|
|
|
{
|
|
|
|
bfd_reloc_code_real_type bfd_reloc_val;
|
|
|
|
unsigned char elf_reloc_val;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct arc_reloc_map arc_reloc_map[] =
|
|
|
|
{
|
|
|
|
{ BFD_RELOC_NONE, R_ARC_NONE, },
|
|
|
|
{ BFD_RELOC_32, R_ARC_32 },
|
|
|
|
{ BFD_RELOC_CTOR, R_ARC_32 },
|
|
|
|
{ BFD_RELOC_ARC_B26, R_ARC_B26 },
|
|
|
|
{ BFD_RELOC_ARC_B22_PCREL, R_ARC_B22_PCREL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
bfd_elf32_bfd_reloc_type_lookup (abfd, code)
|
1999-07-12 12:30:21 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2001-10-02 16:28:42 +02:00
|
|
|
for (i = ARRAY_SIZE (arc_reloc_map); i--;)
|
|
|
|
if (arc_reloc_map[i].bfd_reloc_val == code)
|
|
|
|
return elf_arc_howto_table + arc_reloc_map[i].elf_reloc_val;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the howto pointer for an ARC ELF reloc. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
arc_info_to_howto_rel (abfd, cache_ptr, dst)
|
1999-07-12 12:30:21 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
arelent *cache_ptr;
|
|
|
|
Elf32_Internal_Rel *dst;
|
|
|
|
{
|
|
|
|
unsigned int r_type;
|
|
|
|
|
|
|
|
r_type = ELF32_R_TYPE (dst->r_info);
|
|
|
|
BFD_ASSERT (r_type < (unsigned int) R_ARC_max);
|
|
|
|
cache_ptr->howto = &elf_arc_howto_table[r_type];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the right machine number for an ARC ELF file. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
arc_elf_object_p (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
unsigned int mach = bfd_mach_arc_6;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
if (elf_elfheader(abfd)->e_machine == EM_ARC)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
unsigned long arch = elf_elfheader (abfd)->e_flags & EF_ARC_MACH;
|
|
|
|
|
|
|
|
switch (arch)
|
|
|
|
{
|
|
|
|
case E_ARC_MACH_ARC5:
|
|
|
|
mach = bfd_mach_arc_5;
|
|
|
|
break;
|
2001-05-12 17:14:53 +02:00
|
|
|
default:
|
2001-01-11 22:20:20 +01:00
|
|
|
case E_ARC_MACH_ARC6:
|
|
|
|
mach = bfd_mach_arc_6;
|
|
|
|
break;
|
|
|
|
case E_ARC_MACH_ARC7:
|
|
|
|
mach = bfd_mach_arc_7;
|
|
|
|
break;
|
|
|
|
case E_ARC_MACH_ARC8:
|
|
|
|
mach = bfd_mach_arc_8;
|
|
|
|
break;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
return bfd_default_set_arch_mach (abfd, bfd_arch_arc, mach);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The final processing done just before writing out an ARC ELF object file.
|
|
|
|
This gets the ARC architecture right based on the machine number. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
arc_elf_final_write_processing (abfd, linker)
|
|
|
|
bfd *abfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
boolean linker ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
unsigned long val;
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
switch (bfd_get_mach (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
case bfd_mach_arc_5:
|
|
|
|
val = E_ARC_MACH_ARC5;
|
|
|
|
break;
|
2001-05-12 17:14:53 +02:00
|
|
|
default:
|
2001-01-11 22:20:20 +01:00
|
|
|
case bfd_mach_arc_6:
|
|
|
|
val = E_ARC_MACH_ARC6;
|
|
|
|
break;
|
|
|
|
case bfd_mach_arc_7:
|
|
|
|
val = E_ARC_MACH_ARC7;
|
|
|
|
break;
|
|
|
|
case bfd_mach_arc_8:
|
|
|
|
val = E_ARC_MACH_ARC8;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
elf_elfheader (abfd)->e_flags &=~ EF_ARC_MACH;
|
|
|
|
elf_elfheader (abfd)->e_flags |= val;
|
|
|
|
}
|
|
|
|
|
2001-10-02 16:28:42 +02:00
|
|
|
bfd_reloc_status_type
|
|
|
|
arc_elf_b22_pcrel (abfd, reloc_entry, symbol, data, input_section,
|
|
|
|
output_bfd, error_message)
|
|
|
|
bfd * abfd;
|
|
|
|
arelent * reloc_entry;
|
|
|
|
asymbol * symbol;
|
|
|
|
PTR data;
|
|
|
|
asection * input_section;
|
|
|
|
bfd * output_bfd;
|
|
|
|
char ** error_message;
|
|
|
|
{
|
|
|
|
/* If linking, back up the final symbol address by the address of the
|
|
|
|
reloc. This cannot be accomplished by setting the pcrel_offset
|
|
|
|
field to true, as bfd_install_relocation will detect this and refuse
|
|
|
|
to install the offset in the first place, but bfd_perform_relocation
|
|
|
|
will still insist on removing it. */
|
|
|
|
if (output_bfd == (bfd *) NULL)
|
|
|
|
reloc_entry->addend -= reloc_entry->address;
|
|
|
|
|
|
|
|
/* Fall through to the default elf reloc handler. */
|
|
|
|
return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
|
|
|
|
input_section, output_bfd, error_message);
|
|
|
|
}
|
2002-06-03 03:57:10 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
#define TARGET_LITTLE_SYM bfd_elf32_littlearc_vec
|
|
|
|
#define TARGET_LITTLE_NAME "elf32-littlearc"
|
|
|
|
#define TARGET_BIG_SYM bfd_elf32_bigarc_vec
|
|
|
|
#define TARGET_BIG_NAME "elf32-bigarc"
|
|
|
|
#define ELF_ARCH bfd_arch_arc
|
|
|
|
#define ELF_MACHINE_CODE EM_ARC
|
|
|
|
#define ELF_MAXPAGESIZE 0x1000
|
|
|
|
|
|
|
|
#define elf_info_to_howto 0
|
|
|
|
#define elf_info_to_howto_rel arc_info_to_howto_rel
|
|
|
|
#define elf_backend_object_p arc_elf_object_p
|
|
|
|
#define elf_backend_final_write_processing arc_elf_final_write_processing
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "elf32-target.h"
|