2002-01-07 Michael Snyder <msnyder@redhat.com>
[deliverable/binutils-gdb.git] / gas / config / tc-sh.h
CommitLineData
252b5132 1/* This file is tc-sh.h
f7e42eb4
NC
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22#define TC_SH
23
252b5132
RH
24#define TARGET_ARCH bfd_arch_sh
25
26#if ANSI_PROTOTYPES
27struct segment_info_struct;
28struct internal_reloc;
29#endif
30
252b5132
RH
31/* Whether -relax was used. */
32extern int sh_relax;
33
34/* Whether -small was used. */
35extern int sh_small;
36
37/* Don't try to break words. */
38#define WORKING_DOT_WORD
39
0d10e182
JL
40/* All SH instructions are multiples of 16 bits. */
41#define DWARF2_LINE_MIN_INSN_LENGTH 2
42
252b5132
RH
43/* We require .long, et. al., to be aligned correctly. */
44#define md_cons_align(nbytes) sh_cons_align (nbytes)
45extern void sh_cons_align PARAMS ((int));
46
47/* When relaxing, we need to generate relocations for alignment
48 directives. */
49#define HANDLE_ALIGN(frag) sh_handle_align (frag)
50extern void sh_handle_align PARAMS ((fragS *));
51
0a9ef439
RH
52#define MAX_MEM_FOR_RS_ALIGN_CODE (1 + 2)
53
252b5132
RH
54/* We need to force out some relocations when relaxing. */
55#define TC_FORCE_RELOCATION(fix) sh_force_relocation (fix)
e08ae979
HPN
56
57/* The type fixS is defined (to struct fix) in write.h, but write.h uses
58 definitions from this file. To avoid problems with including write.h
59 after the "right" definitions, don't; just forward-declare struct fix
60 here. */
61struct fix;
62extern int sh_force_relocation PARAMS ((struct fix *));
252b5132
RH
63
64#ifdef OBJ_ELF
65#define obj_fix_adjustable(fixP) sh_fix_adjustable(fixP)
49309057
ILT
66struct fix;
67extern boolean sh_fix_adjustable PARAMS ((struct fix *));
a1cc9221
AO
68
69/* This arranges for gas/write.c to not apply a relocation if
70 obj_fix_adjustable() says it is not adjustable. */
71#define TC_FIX_ADJUSTABLE(fixP) obj_fix_adjustable (fixP)
252b5132
RH
72#endif
73
79ad6e94
HPN
74#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC)
75extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
76
252b5132
RH
77#define IGNORE_NONSTANDARD_ESCAPES
78
05982cac
HPN
79#define LISTING_HEADER \
80 (!target_big_endian \
81 ? "Hitachi Super-H GAS Little Endian" : "Hitachi Super-H GAS Big Endian")
252b5132
RH
82
83#define md_operand(x)
84
85extern const struct relax_type md_relax_table[];
86#define TC_GENERIC_RELAX_TABLE md_relax_table
87
252b5132
RH
88/* We record, for each section, whether we have most recently output a
89 CODE reloc or a DATA reloc. */
90struct sh_segment_info_type
91{
92 int in_code : 1;
93};
94#define TC_SEGMENT_INFO_TYPE struct sh_segment_info_type
95
96/* We call a routine to emit a reloc for a label, so that the linker
97 can align loads and stores without crossing a label. */
98extern void sh_frob_label PARAMS ((void));
99#define tc_frob_label(sym) sh_frob_label ()
100
101/* We call a routine to flush pending output in order to output a DATA
102 reloc when required. */
103extern void sh_flush_pending_output PARAMS ((void));
104#define md_flush_pending_output() sh_flush_pending_output ()
105
106#ifdef BFD_ASSEMBLER
107#define tc_frob_file_before_adjust sh_frob_file
108#else
109#define tc_frob_file sh_frob_file
110#endif
111extern void sh_frob_file PARAMS ((void));
112
113#ifdef OBJ_COFF
114/* COFF specific definitions. */
115
116#define DO_NOT_STRIP 0
117
118/* This macro translates between an internal fix and an coff reloc type */
119#define TC_COFF_FIX2RTYPE(fix) ((fix)->fx_r_type)
120
121#define BFD_ARCH TARGET_ARCH
122
05982cac 123#define COFF_MAGIC (!target_big_endian ? SH_ARCH_MAGIC_LITTLE : SH_ARCH_MAGIC_BIG)
252b5132
RH
124
125/* We need to write out relocs which have not been completed. */
126#define TC_COUNT_RELOC(fix) ((fix)->fx_addsy != NULL)
127
128#define TC_RELOC_MANGLE(seg, fix, int, paddr) \
129 sh_coff_reloc_mangle ((seg), (fix), (int), (paddr))
130extern void sh_coff_reloc_mangle
131 PARAMS ((struct segment_info_struct *, struct fix *,
132 struct internal_reloc *, unsigned int));
133
134#define tc_coff_symbol_emit_hook(a) ; /* not used */
135
136#define NEED_FX_R_TYPE 1
137
138#define TC_KEEP_FX_OFFSET 1
139
140#define TC_COFF_SIZEMACHDEP(frag) tc_coff_sizemachdep(frag)
141extern int tc_coff_sizemachdep PARAMS ((fragS *));
142
056350c6 143#ifdef BFD_ASSEMBLER
21d75ec2 144#define SEG_NAME(SEG) segment_name (SEG)
056350c6 145#else
21d75ec2
NC
146#define SEG_NAME(SEG) obj_segment_name (SEG)
147#endif
148
252b5132 149/* We align most sections to a 16 byte boundary. */
21d75ec2
NC
150#define SUB_SEGMENT_ALIGN(SEG) \
151 (strncmp (SEG_NAME (SEG), ".stabstr", 8) == 0 \
152 ? 0 \
153 : ((strncmp (SEG_NAME (SEG), ".stab", 5) == 0 \
154 || strcmp (SEG_NAME (SEG), ".ctors") == 0 \
155 || strcmp (SEG_NAME (SEG), ".dtors") == 0) \
156 ? 2 \
252b5132
RH
157 : (sh_small ? 2 : 4)))
158
159#endif /* OBJ_COFF */
160
161#ifdef OBJ_ELF
162/* ELF specific definitions. */
163
164/* Whether or not the target is big endian */
165extern int target_big_endian;
d07ed2cd 166#ifdef TE_LINUX
05982cac 167#define TARGET_FORMAT (!target_big_endian ? "elf32-sh-linux" : "elf32-shbig-linux")
d07ed2cd 168#else
05982cac 169#define TARGET_FORMAT (!target_big_endian ? "elf32-shl" : "elf32-sh")
d07ed2cd 170#endif
252b5132 171
d4845d57
JR
172#define elf_tc_final_processing sh_elf_final_processing
173extern void sh_elf_final_processing PARAMS ((void));
174
a1cc9221
AO
175#define DIFF_EXPR_OK /* foo-. gets turned into PC relative relocs */
176
177#define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
81d4177b 178
a1cc9221
AO
179/* This is the relocation type for direct references to
180 GLOBAL_OFFSET_TABLE. It comes up in complicated expressions such
181 as _GLOBAL_OFFSET_TABLE_+[.-.L284], which cannot be expressed
182 normally with the regular expressions. The fixup specified here
183 when used at runtime implies that we should add the address of the
184 GOT to the specified location, and as a result we have simplified
185 the expression into something we can use. */
186#define TC_RELOC_GLOBAL_OFFSET_TABLE BFD_RELOC_SH_GOTPC
187
188/* This expression evaluates to false if the relocation is for a local object
189 for which we still want to do the relocation at runtime. True if we
190 are willing to perform this relocation while building the .o file.
191 This is only used for pcrel relocations, so GOTOFF does not need to be
192 checked here. I am not sure if some of the others are ever used with
193 pcrel, but it is easier to be safe than sorry.
194
195 We can't resolve references to the GOT or the PLT when creating the
196 object file, since these tables are only created by the linker.
197 Also, if the symbol is global, weak, common or not defined, the
198 assembler can't compute the appropriate reloc, since its location
199 can only be determined at link time. */
200
201#define TC_RELOC_RTSYM_LOC_FIXUP(FIX) \
202 ((FIX)->fx_r_type != BFD_RELOC_32_PLT_PCREL \
203 && (FIX)->fx_r_type != BFD_RELOC_32_GOT_PCREL \
204 && (FIX)->fx_r_type != BFD_RELOC_SH_GOTPC \
205 && ((FIX)->fx_addsy == NULL \
206 || (! S_IS_EXTERNAL ((FIX)->fx_addsy) \
207 && ! S_IS_WEAK ((FIX)->fx_addsy) \
208 && S_IS_DEFINED ((FIX)->fx_addsy) \
209 && ! S_IS_COMMON ((FIX)->fx_addsy))))
210
252b5132 211#endif /* OBJ_ELF */
This page took 0.111417 seconds and 4 git commands to generate.