1992-02-18 11:27:34 +00:00
|
|
|
/* m88k.h -- Assembler for the Motorola 88000
|
|
|
|
Contributed by Devon Bowen of Buffalo University
|
|
|
|
and Torbjorn Granlund of the Swedish Institute of Computer Science.
|
1997-02-14 22:49:25 +00:00
|
|
|
Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 1997
|
1996-02-08 00:22:02 +00:00
|
|
|
Free Software Foundation, Inc.
|
1992-02-18 11:27:34 +00:00
|
|
|
|
|
|
|
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
|
* Many files: Added gettext invocations around user-visible
strings.
* acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_STPCPY,
HAVE_LC_MESSAGES): Define.
* dep-in.sed: Added asintl.h.
* po/Make-in: New file.
* gasp.c (main): Call setlocale, bindtextdomain, and textdomain.
Include "asintl.h".
* read.c (Z_): Renamed from `_'.
* Makefile.am (SUBDIRS): Added po.
(POTFILES): new macro.
(po/POTFILES.in): New target.
($(OBJS)): Added asintl.h.
(HFILES): Likewise.
(INCLUDES): Added -DLOCALEDIR, -I$(top_srcdir)/../intl.
(as_new_LDADD): Added $(INTLLIBS).
(as_new_DEPENDENCIES): Added $(INTLDEPS).
(gasp_new_LDADD): Added $(INTLLIBS).
(gasp_new_DEPENDENCIES): New macro.
* configure, aclocal.m4: Rebuilt.
* configure.in: Call CY_GNU_GETTEXT. Generate po/Makefile.in and
po/Makefile.
(ALL_LINGUAS): Define.
* macro.c: Include "asintl.h".
* as.c (main): Call setlocale, bindtextdomain, and textdomain.
* as.h: Include "asintl.h".
* config/tc-i386.c (ordinal_names): Removed.
(md_assemble): Changed error text to avoid ordinal_names.
(i386_operand): Likewise.
(reloc): Added as_bad to avoid i18n problems.
(tc_gen_reloc): Likewise.
* config/tc-arm.c (bad_args): Now a #define.
(bad_pc): Likewise.
* config/obj-vms.c (VMS_stab_parse): Changed type of
`long_const_msg'.
(global_symbol_directory): Unified strings to avoid i18n
problems.
* config/tc-m68k.c (get_reloc_code): Added some as_bad calls to
avoid i18n problems.
* config/tc-ns32k.c (reloc): Added as_bad to avoid i18n problems.
* config/tc-ppc.c (md_apply_fix3): Added as_bad_where to avoid
i18n problems.
* config/tc-sh.c (md_convert_frag): Added as_bad to avoid i18n
problems.
start-sanitize-v850
* config/tc-v850.c (md_assemble): Changed C++ comment into C
comment.
end-sanitize-v850
* config/tc-vax.c (md_assemble): Added as_warn to avoid i18n
problems.
* as.c (print_version_id): Added an fprintf to avoid i18n
problems.
* cond.c (cond_finish_check): Added as_bad call to avoid i18n
problems.
* expr.c (expr): Added as_warn call to avoid i18n problems.
* messages.c (as_assert): Changed code to avoid i18n problems.
(as_abort): Likewise.
* read.c (pseudo_set): Added as_bad call to avoid i18n problems.
(s_space): Likewise.
* po/Make-in, po/POTFILES.in, po/gas.pot: New files.
1998-04-22 06:10:03 +00:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1992-02-18 11:27:34 +00:00
|
|
|
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
|
1997-02-14 22:49:25 +00:00
|
|
|
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. */
|
1992-02-18 11:27:34 +00:00
|
|
|
|
1993-07-15 16:02:21 +00:00
|
|
|
#define TC_M88K
|
|
|
|
|
1995-08-10 04:44:59 +00:00
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 1
|
|
|
|
|
1993-07-15 16:02:21 +00:00
|
|
|
#ifdef M88KCOFF
|
|
|
|
#define COFF_MAGIC MC88OMAGIC
|
|
|
|
#define BFD_ARCH bfd_arch_m88k
|
|
|
|
#define COFF_FLAGS F_AR32W
|
|
|
|
#endif
|
|
|
|
|
1993-07-09 18:31:36 +00:00
|
|
|
#define NEED_FX_R_TYPE
|
1994-10-07 22:00:18 +00:00
|
|
|
#define TC_KEEP_FX_OFFSET
|
1993-08-20 23:52:10 +00:00
|
|
|
#define TC_CONS_RELOC RELOC_32
|
1993-07-09 18:31:36 +00:00
|
|
|
|
1992-02-18 11:27:34 +00:00
|
|
|
/* 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
|
|
|
|
{
|
1992-11-23 20:42:33 +00:00
|
|
|
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;
|
1992-02-18 11:27:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define relocation_info reloc_info_m88k
|
|
|
|
|
1993-07-15 16:02:21 +00:00
|
|
|
/* The m88k uses '@' to start local labels. */
|
|
|
|
#define LEX_AT (LEX_BEGIN_NAME | LEX_NAME)
|
1997-02-28 20:04:39 +00:00
|
|
|
|
|
|
|
#ifndef BFD_ASSEMBLER
|
1993-07-15 16:02:21 +00:00
|
|
|
#define LOCAL_LABEL(name) \
|
|
|
|
((name[0] =='@' && (name [1] == 'L' || name [1] == '.')) \
|
|
|
|
|| (name[0] == 'L' && name[1] == '0' && name[2] == '\001'))
|
1997-02-28 20:04:39 +00:00
|
|
|
#endif
|
1993-07-09 18:31:36 +00:00
|
|
|
|
1993-07-21 17:19:33 +00:00
|
|
|
/* 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
|
|
|
|
|
* Many files: Added gettext invocations around user-visible
strings.
* acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_STPCPY,
HAVE_LC_MESSAGES): Define.
* dep-in.sed: Added asintl.h.
* po/Make-in: New file.
* gasp.c (main): Call setlocale, bindtextdomain, and textdomain.
Include "asintl.h".
* read.c (Z_): Renamed from `_'.
* Makefile.am (SUBDIRS): Added po.
(POTFILES): new macro.
(po/POTFILES.in): New target.
($(OBJS)): Added asintl.h.
(HFILES): Likewise.
(INCLUDES): Added -DLOCALEDIR, -I$(top_srcdir)/../intl.
(as_new_LDADD): Added $(INTLLIBS).
(as_new_DEPENDENCIES): Added $(INTLDEPS).
(gasp_new_LDADD): Added $(INTLLIBS).
(gasp_new_DEPENDENCIES): New macro.
* configure, aclocal.m4: Rebuilt.
* configure.in: Call CY_GNU_GETTEXT. Generate po/Makefile.in and
po/Makefile.
(ALL_LINGUAS): Define.
* macro.c: Include "asintl.h".
* as.c (main): Call setlocale, bindtextdomain, and textdomain.
* as.h: Include "asintl.h".
* config/tc-i386.c (ordinal_names): Removed.
(md_assemble): Changed error text to avoid ordinal_names.
(i386_operand): Likewise.
(reloc): Added as_bad to avoid i18n problems.
(tc_gen_reloc): Likewise.
* config/tc-arm.c (bad_args): Now a #define.
(bad_pc): Likewise.
* config/obj-vms.c (VMS_stab_parse): Changed type of
`long_const_msg'.
(global_symbol_directory): Unified strings to avoid i18n
problems.
* config/tc-m68k.c (get_reloc_code): Added some as_bad calls to
avoid i18n problems.
* config/tc-ns32k.c (reloc): Added as_bad to avoid i18n problems.
* config/tc-ppc.c (md_apply_fix3): Added as_bad_where to avoid
i18n problems.
* config/tc-sh.c (md_convert_frag): Added as_bad to avoid i18n
problems.
start-sanitize-v850
* config/tc-v850.c (md_assemble): Changed C++ comment into C
comment.
end-sanitize-v850
* config/tc-vax.c (md_assemble): Added as_warn to avoid i18n
problems.
* as.c (print_version_id): Added an fprintf to avoid i18n
problems.
* cond.c (cond_finish_check): Added as_bad call to avoid i18n
problems.
* expr.c (expr): Added as_warn call to avoid i18n problems.
* messages.c (as_assert): Changed code to avoid i18n problems.
(as_abort): Likewise.
* read.c (pseudo_set): Added as_bad call to avoid i18n problems.
(s_space): Likewise.
* po/Make-in, po/POTFILES.in, po/gas.pot: New files.
1998-04-22 06:10:03 +00:00
|
|
|
#define md_convert_frag(b,s,f) {as_fatal (_("m88k convert_frag\n"));}
|
1993-07-15 16:02:21 +00:00
|
|
|
|
|
|
|
/* 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)
|
|
|
|
|
1995-11-03 03:58:09 +00:00
|
|
|
/* Align sections to a four byte boundary. */
|
|
|
|
#ifndef max
|
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
#define SUB_SEGMENT_ALIGN(SEG) max (section_alignment[(int) (SEG)], 4)
|
|
|
|
|
|
|
|
/* We use a special alignment function to insert the correct nop
|
|
|
|
pattern in .init. */
|
1997-02-14 22:49:25 +00:00
|
|
|
extern int m88k_do_align PARAMS ((int, const char *, int, int));
|
|
|
|
#define md_do_align(n,fill,len,max,l) if (m88k_do_align(n,fill,max,len)) goto l
|
1995-11-03 03:58:09 +00:00
|
|
|
|
1993-07-15 16:02:21 +00:00
|
|
|
#endif /* M88KCOFF */
|