mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
c94cb02662
This changes the HOWTO macro to encode the howto.size field from a value given in bytes. This of course requires editing all target uses of HOWTO, a major pain, but makes it a little nicer to specify new target HOWTOs. Object files before/after this patch are unchanged in .data and .rodata. bfd/ * reloc.c (HOWTO_RSIZE): Encode size in bytes. (EMPTY_HOWTO): Adjust to keep it all zero. * aout-ns32k.c, * aoutx.h, * coff-alpha.c, * coff-arm.c, * coff-i386.c, * coff-mcore.c, * coff-mips.c, * coff-rs6000.c, * coff-sh.c, * coff-tic30.c, * coff-tic4x.c, * coff-tic54x.c, * coff-x86_64.c, * coff-z80.c, * coff-z8k.c, * coff64-rs6000.c, * elf-hppa.h, * elf-m10200.c, * elf-m10300.c, * elf32-arc.c, * elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c, * elf32-d10v.c, * elf32-d30v.c, * elf32-dlx.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c, * elf32-ft32.c, * elf32-gen.c, * elf32-h8300.c, * elf32-i386.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-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-pru.c, * elf32-rl78.c, * elf32-rx.c, * elf32-s12z.c, * elf32-s390.c, * elf32-score.c, * elf32-score7.c, * elf32-sh-relocs.h, * elf32-spu.c, * elf32-tic6x.c, * elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c, * elf32-wasm32.c, * elf32-xc16x.c, * elf32-xgate.c, * elf32-xstormy16.c, * elf32-xtensa.c, * elf32-z80.c, * elf64-alpha.c, * elf64-bpf.c, * elf64-gen.c, * elf64-mips.c, * elf64-mmix.c, * elf64-nfp.c, * elf64-ppc.c, * elf64-s390.c, * elf64-x86-64.c, * elfn32-mips.c, * elfnn-aarch64.c, * elfxx-ia64.c, * elfxx-loongarch.c, * elfxx-mips.c, * elfxx-riscv.c, * elfxx-sparc.c, * elfxx-tilegx.c, * mach-o-aarch64.c, * mach-o-arm.c, * mach-o-i386.c, * mach-o-x86-64.c, * pdp11.c, * reloc.c, * som.c, * vms-alpha.c: Adjust all uses of HOWTO. * bfd-in2.h: Regenerate. include/ * elf/arc-reloc.def: Adjust all uses of HOWTO.
106 lines
3.1 KiB
C
106 lines
3.1 KiB
C
/* Generic support for 64-bit ELF
|
|
Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#include "sysdep.h"
|
|
#include "bfd.h"
|
|
#include "libbfd.h"
|
|
#include "elf-bfd.h"
|
|
|
|
/* This does not include any relocation information, but should be
|
|
good enough for GDB or objdump to read the file. */
|
|
|
|
static reloc_howto_type dummy =
|
|
HOWTO (0, /* type */
|
|
0, /* rightshift */
|
|
0, /* size */
|
|
0, /* bitsize */
|
|
false, /* pc_relative */
|
|
0, /* bitpos */
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
NULL, /* special_function */
|
|
"UNKNOWN", /* name */
|
|
false, /* partial_inplace */
|
|
0, /* src_mask */
|
|
0, /* dst_mask */
|
|
false); /* pcrel_offset */
|
|
|
|
static bool
|
|
elf_generic_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
|
|
arelent *bfd_reloc,
|
|
Elf_Internal_Rela *elf_reloc ATTRIBUTE_UNUSED)
|
|
{
|
|
bfd_reloc->howto = &dummy;
|
|
return true;
|
|
}
|
|
|
|
static bool
|
|
elf_generic_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED,
|
|
arelent *bfd_reloc,
|
|
Elf_Internal_Rela *elf_reloc ATTRIBUTE_UNUSED)
|
|
{
|
|
bfd_reloc->howto = &dummy;
|
|
return true;
|
|
}
|
|
|
|
static void
|
|
check_for_relocs (bfd * abfd, asection * o, void * failed)
|
|
{
|
|
if ((o->flags & SEC_RELOC) != 0)
|
|
{
|
|
Elf_Internal_Ehdr *ehdrp;
|
|
|
|
ehdrp = elf_elfheader (abfd);
|
|
/* xgettext:c-format */
|
|
_bfd_error_handler (_("%pB: Relocations in generic ELF (EM: %d)"),
|
|
abfd, ehdrp->e_machine);
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
* (bool *) failed = true;
|
|
}
|
|
}
|
|
|
|
static bool
|
|
elf64_generic_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
|
|
{
|
|
bool failed = false;
|
|
|
|
/* Check if there are any relocations. */
|
|
bfd_map_over_sections (abfd, check_for_relocs, & failed);
|
|
|
|
if (failed)
|
|
return false;
|
|
return bfd_elf_link_add_symbols (abfd, info);
|
|
}
|
|
|
|
#define TARGET_LITTLE_SYM elf64_le_vec
|
|
#define TARGET_LITTLE_NAME "elf64-little"
|
|
#define TARGET_BIG_SYM elf64_be_vec
|
|
#define TARGET_BIG_NAME "elf64-big"
|
|
#define ELF_ARCH bfd_arch_unknown
|
|
#define ELF_MACHINE_CODE EM_NONE
|
|
#define ELF_MAXPAGESIZE 0x1
|
|
#define bfd_elf64_bfd_reloc_type_lookup bfd_default_reloc_type_lookup
|
|
#define bfd_elf64_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
|
|
#define bfd_elf64_bfd_link_add_symbols elf64_generic_link_add_symbols
|
|
#define elf_info_to_howto elf_generic_info_to_howto
|
|
#define elf_info_to_howto_rel elf_generic_info_to_howto_rel
|
|
|
|
#include "elf64-target.h"
|