mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
Renamed all uses. (insert): Pass a size of 2, not 4. (build_relax): Remove unused len variable. (md_show_usage): Mention -little option. (md_convert_frag): Add segT argument. Rewrite to generate relocs rather than to generate complete instructions here. (md_apply_fix): Adjust and clarify R_SH_PCRELIMM8BY4 case for changes in insert and md_pcrel_from. Add cases for R_SH_PCDISP and R_SH_PCDISP8BY2. (md_pcrel_from): Don't subtract 1, add 2. (tc_coff_fix2rtype): Remove. (sh_coff_reloc_mangle): New function. * config/tc-sh.h (TC_COFF_FIX2RTYPE): Just return fx_r_type. (sh_relax): Declare. (TC_COUNT_RELOC): If relaxing, count PC relative relocs. (TC_RELOC_MANGLE): Define. (sh_coff_reloc_mangle): Declare. (tc_coff_sizemachdep): Declare. * tc.h (md_convert_frag): Add segT parameter to non BFD_ASSEMBLER declaration. * write.c (cvt_frag_to_fill): Add sec argument to non BFD_ASSEMBLER version. Pass it to md_convert_frag. (write_object_file): Pass SEG_TEXT to cvs_frag_to_fill. * config/obj-coff.c (do_relocs_for): Pass segment info to TC_RELOC_MANGLE. (fixup_mdeps): Pass segment type to md_convert_frag. * config/tc-a29k.c (md_convert_frag): Add segT argument. * config/tc-h8300.c (md_convert_frag): Likewise. * config/tc-h8500.c (md_convert_frag): Likewise. * config/tc-i386.c (md_convert_frag): Likewise. * config/tc-i860.c (md_convert_frag): Likewise. * config/tc-i960.c (md_convert_frag): Likewise. * config/tc-m68k.c (md_convert_frag): Likewise. * config/tc-m88k.h (md_convert_frag): Likewise. * config/tc-ns32k.c (md_convert_frag): Likewise. * config/tc-rce.c (md_convert_frag): Likewise. * config/tc-tahoe.c (md_convert_frag): Likewise. * config/tc-vax.c (md_convert_frag): Likewise. * config/tc-w65.c (md_convert_frag): Likewise. * config/tc-z8k.c (md_convert_frag): Likewise. * config/tc-h8300.h (TC_RELOC_MANGLE): Add segment argument. * config/tc-h8500.h (TC_RELOC_MANGLE): Likewise. * config/tc-rce.h (TC_RELOC_MANGLE): Likewise. * config/tc-w65.h (TC_RELOC_MANGLE): Likewise. * config/tc-z8k.h (TC_RELOC_MANGLE): Likewise.
92 lines
2.6 KiB
C
92 lines
2.6 KiB
C
|
|
/* m88k.h -- Assembler for the Motorola 88000
|
|
Contributed by Devon Bowen of Buffalo University
|
|
and Torbjorn Granlund of the Swedish Institute of Computer Science.
|
|
Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
GAS 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 1, or (at your option)
|
|
any later version.
|
|
|
|
GAS 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 GAS; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#define TC_M88K
|
|
|
|
#ifdef M88KCOFF
|
|
#define COFF_MAGIC MC88OMAGIC
|
|
#define BFD_ARCH bfd_arch_m88k
|
|
#define COFF_FLAGS F_AR32W
|
|
#endif
|
|
|
|
#define NEED_FX_R_TYPE
|
|
#define TC_KEEP_FX_OFFSET
|
|
#define TC_CONS_RELOC RELOC_32
|
|
|
|
/* different type of relocation available in the m88k */
|
|
|
|
enum reloc_type
|
|
{
|
|
RELOC_LO16, /* lo16(sym) */
|
|
RELOC_HI16, /* hi16(sym) */
|
|
RELOC_PC16, /* bb0, bb1, bcnd */
|
|
RELOC_PC26, /* br, bsr */
|
|
RELOC_32, /* jump tables, etc */
|
|
RELOC_IW16, /* global access through linker regs 28 */
|
|
NO_RELOC
|
|
};
|
|
|
|
struct reloc_info_m88k
|
|
{
|
|
unsigned long int r_address;
|
|
unsigned int r_symbolnum:24;
|
|
unsigned int r_extern:1;
|
|
unsigned int r_pad:3;
|
|
enum reloc_type r_type:4;
|
|
long int r_addend;
|
|
};
|
|
|
|
#define relocation_info reloc_info_m88k
|
|
|
|
/* The m88k uses '@' to start local labels. */
|
|
#define LEX_AT (LEX_BEGIN_NAME | LEX_NAME)
|
|
#define LOCAL_LABEL(name) \
|
|
((name[0] =='@' && (name [1] == 'L' || name [1] == '.')) \
|
|
|| (name[0] == 'L' && name[1] == '0' && name[2] == '\001'))
|
|
|
|
/* The m88k uses pseudo-ops with no leading period. */
|
|
#define NO_PSEUDO_DOT
|
|
|
|
/* Don't warn on word overflow; it happens on %hi relocs. */
|
|
#undef WARN_SIGNED_OVERFLOW_WORD
|
|
|
|
#define md_convert_frag(b,s,f) {as_fatal ("m88k convert_frag\n");}
|
|
|
|
/* We don't need to do anything special for undefined symbols. */
|
|
#define md_undefined_symbol(s) 0
|
|
|
|
/* We have no special operand handling. */
|
|
#define md_operand(e)
|
|
|
|
#ifdef M88KCOFF
|
|
|
|
/* Whether a reloc should be output. */
|
|
#define TC_COUNT_RELOC(fixp) ((fixp)->fx_addsy != NULL)
|
|
|
|
/* Get the BFD reloc type to use for a gas fixS structure. */
|
|
#define TC_COFF_FIX2RTYPE(fixp) tc_coff_fix2rtype (fixp)
|
|
|
|
/* No special hook needed for symbols. */
|
|
#define tc_coff_symbol_emit_hook(s)
|
|
|
|
#endif /* M88KCOFF */
|