mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 04:25:10 +08:00
015551fcfb
opcodes: * sh-opc.h (sh_nibble_type): Remove DISP_8 and DISP_4. Split IMM_[48]{,BY[24]} into IMM[01]_[48]{,BY[24]}. Add REPEAT. (sh_arg_type): Add A_PC. (sh_table): Update entries using immediates. Add repeat. * sh-dis.c (print_insn_shx): Remove DISP_8 and DISP_4. Split IMM_[48]{,BY[24]} into IMM[01]_[48]{,BY[24]}. Add REPEAT. gas: * config/tc-sh.c (immediate): Delete. (sh_operand_info): Add immediate member. (parse_reg): Use A_PC for pc. (parse_exp): Add second argument 'op'. All callers changed. (parse_at): Expect pc to be coded as A_PC. Use immediate field in *op. (insert): Add fourth argument 'op'. All callers changed. (build_relax): Add second argument 'op'. All callers changed. (insert_loop_bounds): New function. (build_Mytes): Remove DISP_4. Split IMM_[48]{,BY[24]} into IMM[01]_[48]{,BY[24]}. Add REPEAT. (assemble_ppi): Use immediate field in *operand. (sh_force_relocation): Handle BFD_RELOC_SH_LOOP_{START,END}. (md_apply_fix): Likewise. (tc_gen_reloc): Likewise. Check for a pcrel BFD_RELOC_SH_LABEL. include/coff: * sh.h (R_SH_LOOP_START, R_SH_LOOP_END): Define. include/elf: * sh.h (R_SH_LOOP_START, R_SH_LOOP_END): New RELOC_NUMBERs. bfd: * reloc.c (_bfd_relocate_contents): Add BFD_RELOC_SH_LOOP_START and BFD_RELOC_SH_LOOP_END. * elf32-sh.c (sh_elf_howto_tab): Change special_func to sh_elf_ignore_reloc for all entries that sh_elf_reloc used to ignore. Add entries for R_SH_LOOP_START and R_SH_LOOP_END. (sh_elf_reloc_loop): New function. (sh_elf_reloc): No need to test for always-to-be-ignored relocs any more. (sh_rel): Add entries for BFD_RELOC_SH_LOOP_{START,END}. (sh_elf_relocate_section): Handle BFD_RELOC_SH_LOOP_{START,END}. * bfd-in2.h, libbfd.h: Regenerate.
85 lines
2.9 KiB
C
85 lines
2.9 KiB
C
/* SH ELF support for BFD.
|
|
Copyright (C) 1998, 2000 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef _ELF_SH_H
|
|
#define _ELF_SH_H
|
|
|
|
/* Processor specific flags for the ELF header e_flags field. */
|
|
|
|
#define EF_SH_MACH_MASK 0x1f
|
|
#define EF_SH_UNKNOWN 0 /* For backwards compatibility. */
|
|
#define EF_SH1 1
|
|
#define EF_SH2 2
|
|
#define EF_SH3 3
|
|
#define EF_SH_HAS_DSP(flags) ((flags) & 4)
|
|
#define EF_SH_DSP 4
|
|
#define EF_SH3_DSP 5
|
|
#define EF_SH_HAS_FP(flags) ((flags) & 8)
|
|
#define EF_SH3E 8
|
|
#define EF_SH4 9
|
|
|
|
#define EF_SH_MERGE_MACH(mach1, mach2) \
|
|
(((((mach1) == EF_SH3 || (mach1) == EF_SH_UNKNOWN) && (mach2) == EF_SH_DSP) \
|
|
|| ((mach1) == EF_SH_DSP \
|
|
&& ((mach2) == EF_SH3 || (mach2) == EF_SH_UNKNOWN))) \
|
|
? EF_SH3_DSP \
|
|
: (((mach1) < EF_SH3 && (mach2) == EF_SH_UNKNOWN) \
|
|
|| ((mach2) < EF_SH3 && (mach1) == EF_SH_UNKNOWN)) \
|
|
? EF_SH3 \
|
|
: (((mach1) == EF_SH3E && (mach2) == EF_SH_UNKNOWN) \
|
|
|| ((mach2) == EF_SH3E && (mach1) == EF_SH_UNKNOWN)) \
|
|
? EF_SH4 \
|
|
: ((mach1) > (mach2) ? (mach1) : (mach2)))
|
|
|
|
#include "elf/reloc-macros.h"
|
|
|
|
/* Relocations. */
|
|
/* Relocations 25ff are GNU extensions.
|
|
25..33 are used for relaxation and use the same constants as COFF uses. */
|
|
START_RELOC_NUMBERS (elf_sh_reloc_type)
|
|
RELOC_NUMBER (R_SH_NONE, 0)
|
|
RELOC_NUMBER (R_SH_DIR32, 1)
|
|
RELOC_NUMBER (R_SH_REL32, 2)
|
|
RELOC_NUMBER (R_SH_DIR8WPN, 3)
|
|
RELOC_NUMBER (R_SH_IND12W, 4)
|
|
RELOC_NUMBER (R_SH_DIR8WPL, 5)
|
|
RELOC_NUMBER (R_SH_DIR8WPZ, 6)
|
|
RELOC_NUMBER (R_SH_DIR8BP, 7)
|
|
RELOC_NUMBER (R_SH_DIR8W, 8)
|
|
RELOC_NUMBER (R_SH_DIR8L, 9)
|
|
FAKE_RELOC (R_SH_FIRST_INVALID_RELOC, 10)
|
|
FAKE_RELOC (R_SH_LAST_INVALID_RELOC, 24)
|
|
RELOC_NUMBER (R_SH_SWITCH16, 25)
|
|
RELOC_NUMBER (R_SH_SWITCH32, 26)
|
|
RELOC_NUMBER (R_SH_USES, 27)
|
|
RELOC_NUMBER (R_SH_COUNT, 28)
|
|
RELOC_NUMBER (R_SH_ALIGN, 29)
|
|
RELOC_NUMBER (R_SH_CODE, 30)
|
|
RELOC_NUMBER (R_SH_DATA, 31)
|
|
RELOC_NUMBER (R_SH_LABEL, 32)
|
|
RELOC_NUMBER (R_SH_SWITCH8, 33)
|
|
RELOC_NUMBER (R_SH_GNU_VTINHERIT, 34)
|
|
RELOC_NUMBER (R_SH_GNU_VTENTRY, 35)
|
|
RELOC_NUMBER (R_SH_LOOP_START, 36)
|
|
RELOC_NUMBER (R_SH_LOOP_END, 37)
|
|
EMPTY_RELOC (R_SH_max)
|
|
END_RELOC_NUMBERS
|
|
|
|
#endif
|