* write.c (TC_FX_SIZE_SLACK): Define.
[external/binutils.git] / gas / config / tc-sh.h
1 /* This file is tc-sh.h
2    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3    2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
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, 51 Franklin Street - Fifth Floor,
20    Boston, MA 02110-1301, USA.  */
21
22 #define TC_SH
23
24 #define TARGET_ARCH bfd_arch_sh
25
26 /* The type fixS is defined (to struct fix) in write.h, but write.h uses
27    definitions from this file.  To avoid problems with including write.h
28    after the "right" definitions, don't; just forward-declare struct fix
29    here.  */
30 struct fix;
31 struct segment_info_struct;
32 struct internal_reloc;
33
34 /* Whether -relax was used.  */
35 extern int sh_relax;
36
37 /* Whether -small was used.  */
38 extern int sh_small;
39
40 /* Don't try to break words.  */
41 #define WORKING_DOT_WORD
42
43 /* We require .long, et. al., to be aligned correctly.  */
44 #define md_cons_align(nbytes) sh_cons_align (nbytes)
45 extern void sh_cons_align (int);
46
47 /* When relaxing, we need to generate relocations for alignment
48    directives.  */
49 #define HANDLE_ALIGN(frag) sh_handle_align (frag)
50 extern void sh_handle_align (fragS *);
51
52 #define MAX_MEM_FOR_RS_ALIGN_CODE (1 + 2)
53
54 /* We need to force out some relocations when relaxing.  */
55 #define TC_FORCE_RELOCATION(fix) sh_force_relocation (fix)
56 extern int sh_force_relocation (struct fix *);
57
58 /* This macro decides whether a particular reloc is an entry in a
59    switch table.  It is used when relaxing, because the linker needs
60    to know about all such entries so that it can adjust them if
61    necessary.  */
62
63 #define SWITCH_TABLE(FIX)                               \
64   ((FIX)->fx_addsy != NULL                              \
65    && (FIX)->fx_subsy != NULL                           \
66    && S_GET_SEGMENT ((FIX)->fx_addsy) == text_section   \
67    && S_GET_SEGMENT ((FIX)->fx_subsy) == text_section   \
68    && ((FIX)->fx_r_type == BFD_RELOC_32                 \
69        || (FIX)->fx_r_type == BFD_RELOC_16              \
70        || (FIX)->fx_r_type == BFD_RELOC_8))
71
72 #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEC)          \
73   (! SEG_NORMAL (SEC)                                   \
74    || TC_FORCE_RELOCATION (FIX)                         \
75    || (sh_relax && SWITCH_TABLE (FIX)))
76
77 /* Don't complain when we leave fx_subsy around.  */
78 #define TC_VALIDATE_FIX_SUB(FIX)                        \
79   (sh_relax && SWITCH_TABLE (FIX))
80
81 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
82 extern long md_pcrel_from_section (struct fix *, segT);
83
84 /* SH_COUNT relocs are allowed outside of frag.
85    The target is also buggy and sets fix size too large for other relocs.  */
86 #define TC_FX_SIZE_SLACK(FIX) \
87   ((FIX)->fx_r_type == BFD_RELOC_SH_COUNT ? -1 : 2)
88
89 #define IGNORE_NONSTANDARD_ESCAPES
90
91 #define LISTING_HEADER \
92   (!target_big_endian \
93    ? "Renesas / SuperH SH GAS Little Endian" \
94    : "Renesas / SuperH SH GAS Big Endian")
95
96 #define md_operand(x)
97
98 extern const struct relax_type md_relax_table[];
99 #define TC_GENERIC_RELAX_TABLE md_relax_table
100
101 /* We record, for each section, whether we have most recently output a
102    CODE reloc or a DATA reloc.  */
103 struct sh_segment_info_type
104 {
105   int in_code : 1;
106 };
107 #define TC_SEGMENT_INFO_TYPE struct sh_segment_info_type
108
109 /* We call a routine to emit a reloc for a label, so that the linker
110    can align loads and stores without crossing a label.  */
111 extern void sh_frob_label (symbolS *);
112 #define tc_frob_label(sym) sh_frob_label (sym)
113
114 /* We call a routine to flush pending output in order to output a DATA
115    reloc when required.  */
116 extern void sh_flush_pending_output (void);
117 #define md_flush_pending_output() sh_flush_pending_output ()
118
119 #define tc_frob_file_before_adjust sh_frob_file
120 extern void sh_frob_file (void);
121
122
123 #ifdef OBJ_COFF
124 /* COFF specific definitions.  */
125
126 #define COFF_MAGIC (!target_big_endian ? SH_ARCH_MAGIC_LITTLE : SH_ARCH_MAGIC_BIG)
127
128 #define tc_coff_symbol_emit_hook(a) ; /* not used */
129
130 #define TC_KEEP_FX_OFFSET 1
131
132 #define SEG_NAME(SEG) segment_name (SEG)
133
134 /* We align most sections to a 16 byte boundary.  */
135 #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN)                 \
136   (strncmp (SEG_NAME (SEG), ".stabstr", 8) == 0         \
137    ? 0                                                  \
138    : ((strncmp (SEG_NAME (SEG), ".stab", 5) == 0        \
139        || strcmp (SEG_NAME (SEG), ".ctors") == 0        \
140        || strcmp (SEG_NAME (SEG), ".dtors") == 0)       \
141       ? 2                                               \
142       : (sh_small ? 2 : 4)))
143
144 #endif /* OBJ_COFF */
145
146 #ifdef OBJ_ELF
147 /* ELF specific definitions.  */
148
149 /* Whether or not the target is big endian */
150 extern int target_big_endian;
151 #ifdef TE_LINUX
152 #define TARGET_FORMAT (!target_big_endian ? "elf32-sh-linux" : "elf32-shbig-linux")
153 #elif defined(TE_NetBSD)
154 #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-nbsd" : "elf32-sh-nbsd")
155 #elif defined TARGET_SYMBIAN
156 #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-symbian" : "elf32-sh-symbian")
157 #elif defined (TE_VXWORKS)
158 #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-vxworks" : "elf32-sh-vxworks")
159 #else
160 #define TARGET_FORMAT (!target_big_endian ? "elf32-shl" : "elf32-sh")
161 #endif
162
163 #define elf_tc_final_processing sh_elf_final_processing
164 extern void sh_elf_final_processing (void);
165
166 #define DIFF_EXPR_OK            /* foo-. gets turned into PC relative relocs */
167
168 #define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
169
170 /* This is the relocation type for direct references to
171    GLOBAL_OFFSET_TABLE.  It comes up in complicated expressions such
172    as _GLOBAL_OFFSET_TABLE_+[.-.L284], which cannot be expressed
173    normally with the regular expressions.  The fixup specified here
174    when used at runtime implies that we should add the address of the
175    GOT to the specified location, and as a result we have simplified
176    the expression into something we can use.  */
177 #define TC_RELOC_GLOBAL_OFFSET_TABLE BFD_RELOC_SH_GOTPC
178
179 #define tc_fix_adjustable(FIX) sh_fix_adjustable(FIX)
180 extern bfd_boolean sh_fix_adjustable (struct fix *);
181
182 /* Values passed to md_apply_fix don't include symbol values.  */
183 #define MD_APPLY_SYM_VALUE(FIX) 0
184
185 /* This expression evaluates to true if the relocation is for a local object
186    for which we still want to do the relocation at runtime.  False if we
187    are willing to perform this relocation while building the .o file.
188
189    We can't resolve references to the GOT or the PLT when creating the
190    object file, since these tables are only created by the linker.
191    Also, if the symbol is global, weak, common or not defined, the
192    assembler can't compute the appropriate reloc, since its location
193    can only be determined at link time.  */
194
195 #define TC_FORCE_RELOCATION_LOCAL(FIX)                  \
196   (!(FIX)->fx_pcrel                                     \
197    || (FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL        \
198    || (FIX)->fx_r_type == BFD_RELOC_32_GOT_PCREL        \
199    || (FIX)->fx_r_type == BFD_RELOC_SH_GOTPC            \
200    || TC_FORCE_RELOCATION (FIX))
201
202 #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) (sh_relax && SWITCH_TABLE (FIX))
203
204 /* This keeps the subtracted symbol around, for use by PLT_PCREL
205    relocs.  */
206 #define TC_FORCE_RELOCATION_SUB_ABS(FIX)                \
207   ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL)
208
209 /* Don't complain when we leave fx_subsy around.  */
210 #undef TC_VALIDATE_FIX_SUB
211 #define TC_VALIDATE_FIX_SUB(FIX)                        \
212   ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL           \
213    || (sh_relax && SWITCH_TABLE (FIX)))
214
215 #define md_parse_name(name, exprP, mode, nextcharP) \
216   sh_parse_name ((name), (exprP), (mode), (nextcharP))
217 int sh_parse_name (char const *name, expressionS *exprP,
218                    enum expr_mode mode, char *nextchar);
219
220 #define TC_CONS_FIX_NEW(FRAG, OFF, LEN, EXP) \
221   sh_cons_fix_new ((FRAG), (OFF), (LEN), (EXP))
222 void sh_cons_fix_new (fragS *, int, int, expressionS *);
223
224 /* This is used to construct expressions out of @GOTOFF, @PLT and @GOT
225    symbols.  The relocation type is stored in X_md.  */
226 #define O_PIC_reloc O_md1
227
228 #define TARGET_USE_CFIPOP 1
229
230 #define tc_cfi_frame_initial_instructions sh_cfi_frame_initial_instructions
231 extern void sh_cfi_frame_initial_instructions (void);
232
233 #define tc_regname_to_dw2regnum sh_regname_to_dw2regnum
234 extern int sh_regname_to_dw2regnum (char *regname);
235
236 /* All SH instructions are multiples of 16 bits.  */
237 #define DWARF2_LINE_MIN_INSN_LENGTH 2
238 #define DWARF2_DEFAULT_RETURN_COLUMN 17
239 #define DWARF2_CIE_DATA_ALIGNMENT (-4)
240
241 #endif /* OBJ_ELF */