1999-05-03 09:29:11 +02:00
|
|
|
/* tc-mn10300.h -- Header file for tc-mn10300.c.
|
2003-01-23 13:51:05 +01:00
|
|
|
Copyright 1996, 1997, 2000, 2001, 2002, 2003
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02: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
|
|
|
|
the Free Software Foundation; either version 2, 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
|
2000-09-21 00:05:08 +02:00
|
|
|
02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define TC_MN10300
|
|
|
|
|
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 0
|
|
|
|
|
|
|
|
#ifndef BFD_ASSEMBLER
|
|
|
|
#error MN10300 support requires BFD_ASSEMBLER
|
|
|
|
#endif
|
|
|
|
|
2003-02-25 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.c (mn10300_check_fixup): Set GOT_PCREL type
for subtracts from GLOBAL_OFFSET_TABLE that could not be
simplified.
2002-07-18 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.c (mn10300_check_fixup): Accept subtracts that
could not be simplified.
(tc_gen_reloc): Turn an absolute fx_subsy into part of fx_offset.
2001-11-04 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.h (TC_RELOC_RTSYM_LOC_FIXUP): Don't adjust
BDF_RELOC_MN10300_GOT32.
* config/tc-mn10300.c (mn10300_fix_adjustable): If
TC_RELOC_RTSYM_LOC_FIXUP doesn't hold, it's not adjustable.
2001-05-09 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.c (mn10300_parse_name): Don't return a
symbol if we know its value.
2001-05-09 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.h (GLOBAL_OFFSET_TABLE_NAME): Remove
duplicate underscore prefix.
2001-05-09 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.c (mn10300_parse_name): Store relocation
type in X_md, not X_add_number. Zero X_add_number.
(mn10300_check_fixup): Extract relocation type from X_md.
* config/tc-mn10300.h: Update comment.
2001-04-14 Alexandre Oliva <aoliva@redhat.com>
* config/tc-mn10300.h (O_GOTOFF, O_PLT, O_GOT): Replace with...
(O_PIC_reloc): this.
* config/tc-mn10300.c (mn10300_PIC_related_p): Use it.
(mn10300_check_fixup): Likewise.
(mn10300_parse_name): Set X_add_number to relocation type.
* config/tc-mn10300.h (DIFF_EXPR_OK, GLOBAL_OFFSET_TABLE_NAME,
TC_RELOC_RTSYM_LOC_FIXUP, md_parse_name, TC_CONS_FIX_NEW,
O_GOTOFF, O_PLT, O_GOT): Define.
* config/tc-mn10300.c (mn10300_PIC_related_p): New fn.
(mn10300_check_fixup): New fn.
(md_assemble): Call it. Check for PIC-related relocs.
(mn10300_cons_fix_new): Likewise. New fn.
(mn10300_end_of_match): New fn.
(mn10300_md_parse_name_cont): New fn.
2003-07-10 05:20:14 +02:00
|
|
|
#define DIFF_EXPR_OK
|
|
|
|
#define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
|
|
|
|
|
|
|
|
#define TC_RELOC_RTSYM_LOC_FIXUP(FIX) \
|
|
|
|
((FIX)->fx_r_type != BFD_RELOC_32_PLT_PCREL \
|
|
|
|
&& (FIX)->fx_r_type != BFD_RELOC_MN10300_GOT32 \
|
|
|
|
&& (FIX)->fx_r_type != BFD_RELOC_32_GOT_PCREL \
|
|
|
|
&& ((FIX)->fx_addsy == NULL \
|
|
|
|
|| (! S_IS_EXTERNAL ((FIX)->fx_addsy) \
|
|
|
|
&& ! S_IS_WEAK ((FIX)->fx_addsy) \
|
|
|
|
&& S_IS_DEFINED ((FIX)->fx_addsy) \
|
|
|
|
&& ! S_IS_COMMON ((FIX)->fx_addsy))))
|
|
|
|
|
|
|
|
#define md_parse_name(name, exprP, nextcharP) \
|
|
|
|
mn10300_parse_name ((name), (exprP), (nextcharP))
|
|
|
|
int mn10300_parse_name PARAMS ((char const *, expressionS *, char *));
|
|
|
|
|
|
|
|
#define TC_CONS_FIX_NEW(FRAG, OFF, LEN, EXP) \
|
|
|
|
mn10300_cons_fix_new ((FRAG), (OFF), (LEN), (EXP))
|
|
|
|
void mn10300_cons_fix_new PARAMS ((fragS *, int, int, expressionS *));
|
|
|
|
|
|
|
|
/* This is used to construct expressions out of @GOTOFF, @PLT and @GOT
|
|
|
|
symbols. The relocation type is stored in X_md. */
|
|
|
|
#define O_PIC_reloc O_md1
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* The target BFD architecture. */
|
|
|
|
#define TARGET_ARCH bfd_arch_mn10300
|
|
|
|
|
2003-07-10 06:44:56 +02:00
|
|
|
#ifdef TE_LINUX
|
|
|
|
#define TARGET_FORMAT "elf32-am33lin"
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
#define TARGET_FORMAT "elf32-mn10300"
|
2003-07-10 06:44:56 +02:00
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-09-05 02:01:18 +02:00
|
|
|
|
|
|
|
/* Do not adjust relocations involving symbols in code sections,
|
|
|
|
because it breaks linker relaxations. This could be fixed in the
|
|
|
|
linker, but this fix is simpler, and it pretty much only affects
|
|
|
|
object size a little bit. */
|
2003-01-23 13:51:05 +01:00
|
|
|
#define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEC) \
|
|
|
|
(((SEC)->flags & SEC_CODE) != 0 \
|
|
|
|
|| ! SEG_NORMAL (SEC) \
|
|
|
|
|| TC_FORCE_RELOCATION (FIX))
|
2000-08-22 03:20:41 +02:00
|
|
|
|
2002-12-12 05:32:07 +01:00
|
|
|
/* We validate subtract arguments within tc_gen_reloc(), so don't
|
|
|
|
report errors at this point. */
|
|
|
|
#define TC_VALIDATE_FIX_SUB(FIX) 1
|
|
|
|
|
|
|
|
/* Fixup debug sections since we will never relax them. Ideally, we
|
|
|
|
could do away with this and instead check every single fixup with
|
|
|
|
TC_FORCE_RELOCATION and TC_FORCE_RELOCATION_SUB_NAME, verifying
|
|
|
|
that the sections of the referenced symbols (and not the sections
|
|
|
|
in which the fixup appears) may be subject to relaxation. We'd
|
|
|
|
still have to check the section in which the fixup appears, because
|
|
|
|
we want to do some simplifications in debugging info that might
|
|
|
|
break in real code.
|
|
|
|
|
|
|
|
Using the infrastructure in write.c to simplify subtraction fixups
|
|
|
|
would enable us to remove a lot of code from tc_gen_reloc(), but
|
|
|
|
this is simpler, faster, and produces almost the same effect.
|
|
|
|
Also, in the macros above, we can't check whether the fixup is in a
|
|
|
|
debugging section or not, so we have to use this for now. */
|
2000-08-22 03:20:41 +02:00
|
|
|
#define TC_LINKRELAX_FIXUP(seg) (seg->flags & SEC_ALLOC)
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#define md_operand(x)
|
|
|
|
|
|
|
|
/* Permit temporary numeric labels. */
|
|
|
|
#define LOCAL_LABELS_FB 1
|
|
|
|
|
|
|
|
/* We don't need to handle .word strangely. */
|
|
|
|
#define WORKING_DOT_WORD
|
|
|
|
|
|
|
|
#define md_number_to_chars number_to_chars_littleendian
|
|
|
|
|
|
|
|
/* Don't bother to adjust relocs. */
|
|
|
|
#define tc_fix_adjustable(FIX) 0
|
2002-09-05 02:01:18 +02:00
|
|
|
/* #define tc_fix_adjustable(FIX) mn10300_fix_adjustable (FIX) */
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean mn10300_fix_adjustable PARAMS ((struct fix *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* We do relaxing in the assembler as well as the linker. */
|
|
|
|
extern const struct relax_type md_relax_table[];
|
|
|
|
#define TC_GENERIC_RELAX_TABLE md_relax_table
|
2000-05-12 08:16:30 +02:00
|
|
|
|
2000-08-14 19:49:55 +02:00
|
|
|
#define DWARF2_LINE_MIN_INSN_LENGTH 1
|