gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
[deliverable/binutils-gdb.git] / gas / config / tc-sh.h
CommitLineData
252b5132 1/* This file is tc-sh.h
4b95cf5c 2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
4b4da160
NC
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
252b5132
RH
20
21#define TC_SH
22
252b5132
RH
23#define TARGET_ARCH bfd_arch_sh
24
a161fe53
AM
25/* The type fixS is defined (to struct fix) in write.h, but write.h uses
26 definitions from this file. To avoid problems with including write.h
27 after the "right" definitions, don't; just forward-declare struct fix
28 here. */
29struct fix;
252b5132
RH
30struct segment_info_struct;
31struct internal_reloc;
252b5132 32
252b5132
RH
33/* Whether -relax was used. */
34extern int sh_relax;
35
36/* Whether -small was used. */
37extern int sh_small;
38
39/* Don't try to break words. */
40#define WORKING_DOT_WORD
41
42/* We require .long, et. al., to be aligned correctly. */
43#define md_cons_align(nbytes) sh_cons_align (nbytes)
8edc77b9 44extern void sh_cons_align (int);
252b5132 45
0cc34095
KK
46/* We need to optimize expr with taking account of rs_align_test
47 frags. */
48
541d2ffd 49#ifdef OBJ_ELF
0cc34095
KK
50#define md_optimize_expr(l,o,r) sh_optimize_expr (l, o, r)
51extern int sh_optimize_expr (expressionS *, operatorT, expressionS *);
541d2ffd 52#endif
0cc34095 53
252b5132
RH
54/* When relaxing, we need to generate relocations for alignment
55 directives. */
56#define HANDLE_ALIGN(frag) sh_handle_align (frag)
8edc77b9 57extern void sh_handle_align (fragS *);
252b5132 58
0a9ef439
RH
59#define MAX_MEM_FOR_RS_ALIGN_CODE (1 + 2)
60
252b5132
RH
61/* We need to force out some relocations when relaxing. */
62#define TC_FORCE_RELOCATION(fix) sh_force_relocation (fix)
8edc77b9 63extern int sh_force_relocation (struct fix *);
252b5132 64
a161fe53
AM
65/* This macro decides whether a particular reloc is an entry in a
66 switch table. It is used when relaxing, because the linker needs
67 to know about all such entries so that it can adjust them if
68 necessary. */
a1cc9221 69
a161fe53
AM
70#define SWITCH_TABLE(FIX) \
71 ((FIX)->fx_addsy != NULL \
72 && (FIX)->fx_subsy != NULL \
73 && S_GET_SEGMENT ((FIX)->fx_addsy) == text_section \
74 && S_GET_SEGMENT ((FIX)->fx_subsy) == text_section \
75 && ((FIX)->fx_r_type == BFD_RELOC_32 \
76 || (FIX)->fx_r_type == BFD_RELOC_16 \
7be1c489 77 || (FIX)->fx_r_type == BFD_RELOC_8))
a161fe53 78
ae6063d4
AM
79#define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEC) \
80 (! SEG_NORMAL (SEC) \
81 || TC_FORCE_RELOCATION (FIX) \
a161fe53
AM
82 || (sh_relax && SWITCH_TABLE (FIX)))
83
84/* Don't complain when we leave fx_subsy around. */
5db484ff
AM
85#define TC_VALIDATE_FIX_SUB(FIX, SEG) \
86 ((md_register_arithmetic || (SEG) != reg_section) \
87 && sh_relax && SWITCH_TABLE (FIX))
a161fe53
AM
88
89#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
8edc77b9 90extern long md_pcrel_from_section (struct fix *, segT);
79ad6e94 91
d31f0f6d
AM
92/* SH_COUNT relocs are allowed outside of frag.
93 The target is also buggy and sets fix size too large for other relocs. */
94#define TC_FX_SIZE_SLACK(FIX) \
95 ((FIX)->fx_r_type == BFD_RELOC_SH_COUNT ? -1 : 2)
96
252b5132
RH
97#define IGNORE_NONSTANDARD_ESCAPES
98
05982cac
HPN
99#define LISTING_HEADER \
100 (!target_big_endian \
ef230218
JR
101 ? "Renesas / SuperH SH GAS Little Endian" \
102 : "Renesas / SuperH SH GAS Big Endian")
252b5132
RH
103
104#define md_operand(x)
105
106extern const struct relax_type md_relax_table[];
107#define TC_GENERIC_RELAX_TABLE md_relax_table
108
252b5132
RH
109/* We record, for each section, whether we have most recently output a
110 CODE reloc or a DATA reloc. */
111struct sh_segment_info_type
112{
113 int in_code : 1;
114};
115#define TC_SEGMENT_INFO_TYPE struct sh_segment_info_type
116
117/* We call a routine to emit a reloc for a label, so that the linker
118 can align loads and stores without crossing a label. */
07a53e5c
RH
119extern void sh_frob_label (symbolS *);
120#define tc_frob_label(sym) sh_frob_label (sym)
252b5132
RH
121
122/* We call a routine to flush pending output in order to output a DATA
123 reloc when required. */
8edc77b9 124extern void sh_flush_pending_output (void);
252b5132
RH
125#define md_flush_pending_output() sh_flush_pending_output ()
126
252b5132 127#define tc_frob_file_before_adjust sh_frob_file
8edc77b9 128extern void sh_frob_file (void);
252b5132 129
a161fe53 130
252b5132
RH
131#ifdef OBJ_COFF
132/* COFF specific definitions. */
133
05982cac 134#define COFF_MAGIC (!target_big_endian ? SH_ARCH_MAGIC_LITTLE : SH_ARCH_MAGIC_BIG)
252b5132 135
8e45593f 136#define tc_coff_symbol_emit_hook(a) ; /* Not used. */
252b5132 137
252b5132
RH
138#define TC_KEEP_FX_OFFSET 1
139
21d75ec2 140#define SEG_NAME(SEG) segment_name (SEG)
21d75ec2 141
252b5132 142/* We align most sections to a 16 byte boundary. */
18e1d487 143#define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) \
21d75ec2
NC
144 (strncmp (SEG_NAME (SEG), ".stabstr", 8) == 0 \
145 ? 0 \
146 : ((strncmp (SEG_NAME (SEG), ".stab", 5) == 0 \
147 || strcmp (SEG_NAME (SEG), ".ctors") == 0 \
148 || strcmp (SEG_NAME (SEG), ".dtors") == 0) \
149 ? 2 \
252b5132
RH
150 : (sh_small ? 2 : 4)))
151
152#endif /* OBJ_COFF */
153
154#ifdef OBJ_ELF
155/* ELF specific definitions. */
156
8e45593f 157/* Whether or not the target is big endian. */
252b5132 158extern int target_big_endian;
d07ed2cd 159#ifdef TE_LINUX
05982cac 160#define TARGET_FORMAT (!target_big_endian ? "elf32-sh-linux" : "elf32-shbig-linux")
8d05742f
JT
161#elif defined(TE_NetBSD)
162#define TARGET_FORMAT (!target_big_endian ? "elf32-shl-nbsd" : "elf32-sh-nbsd")
85fbca6a
NC
163#elif defined TARGET_SYMBIAN
164#define TARGET_FORMAT (!target_big_endian ? "elf32-shl-symbian" : "elf32-sh-symbian")
55e6e397
RS
165#elif defined (TE_VXWORKS)
166#define TARGET_FORMAT (!target_big_endian ? "elf32-shl-vxworks" : "elf32-sh-vxworks")
8e45593f
NC
167#elif defined (TE_UCLINUX)
168#define TARGET_FORMAT sh_uclinux_target_format ()
169extern const char * sh_uclinux_target_format (void);
d07ed2cd 170#else
05982cac 171#define TARGET_FORMAT (!target_big_endian ? "elf32-shl" : "elf32-sh")
d07ed2cd 172#endif
252b5132 173
d4845d57 174#define elf_tc_final_processing sh_elf_final_processing
8edc77b9 175extern void sh_elf_final_processing (void);
d4845d57 176
8e45593f 177#define DIFF_EXPR_OK /* foo-. gets turned into PC relative relocs. */
a1cc9221
AO
178
179#define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
81d4177b 180
a1cc9221
AO
181/* This is the relocation type for direct references to
182 GLOBAL_OFFSET_TABLE. It comes up in complicated expressions such
183 as _GLOBAL_OFFSET_TABLE_+[.-.L284], which cannot be expressed
184 normally with the regular expressions. The fixup specified here
185 when used at runtime implies that we should add the address of the
186 GOT to the specified location, and as a result we have simplified
187 the expression into something we can use. */
188#define TC_RELOC_GLOBAL_OFFSET_TABLE BFD_RELOC_SH_GOTPC
189
a161fe53 190#define tc_fix_adjustable(FIX) sh_fix_adjustable(FIX)
8edc77b9 191extern bfd_boolean sh_fix_adjustable (struct fix *);
a161fe53 192
55cf6793 193/* Values passed to md_apply_fix don't include symbol values. */
a161fe53
AM
194#define MD_APPLY_SYM_VALUE(FIX) 0
195
196/* This expression evaluates to true if the relocation is for a local object
197 for which we still want to do the relocation at runtime. False if we
a1cc9221 198 are willing to perform this relocation while building the .o file.
a1cc9221
AO
199
200 We can't resolve references to the GOT or the PLT when creating the
201 object file, since these tables are only created by the linker.
202 Also, if the symbol is global, weak, common or not defined, the
203 assembler can't compute the appropriate reloc, since its location
204 can only be determined at link time. */
205
a161fe53
AM
206#define TC_FORCE_RELOCATION_LOCAL(FIX) \
207 (!(FIX)->fx_pcrel \
a161fe53
AM
208 || (FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
209 || (FIX)->fx_r_type == BFD_RELOC_32_GOT_PCREL \
210 || (FIX)->fx_r_type == BFD_RELOC_SH_GOTPC \
211 || TC_FORCE_RELOCATION (FIX))
212
5db484ff
AM
213#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) \
214 ((!md_register_arithmetic && (SEG) == reg_section) \
215 || (sh_relax && SWITCH_TABLE (FIX)))
bdfaef52 216
a161fe53
AM
217/* This keeps the subtracted symbol around, for use by PLT_PCREL
218 relocs. */
9a97a5d7
AM
219#define TC_FORCE_RELOCATION_SUB_ABS(FIX, SEG) \
220 ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
221 || (!md_register_arithmetic && (SEG) == reg_section))
a161fe53
AM
222
223/* Don't complain when we leave fx_subsy around. */
224#undef TC_VALIDATE_FIX_SUB
5db484ff
AM
225#define TC_VALIDATE_FIX_SUB(FIX, SEG) \
226 ((md_register_arithmetic || (SEG) != reg_section) \
227 && ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
228 || (sh_relax && SWITCH_TABLE (FIX))))
a1cc9221 229
9497f5ac
NC
230#define md_parse_name(name, exprP, mode, nextcharP) \
231 sh_parse_name ((name), (exprP), (mode), (nextcharP))
8e45593f
NC
232int sh_parse_name (char const *, expressionS *,
233 enum expr_mode, char *);
538cd60f 234
62ebcb5c
AM
235#define TC_CONS_FIX_NEW(FRAG, OFF, LEN, EXP, RELOC) \
236 sh_cons_fix_new ((FRAG), (OFF), (LEN), (EXP), (RELOC))
237void sh_cons_fix_new (fragS *, int, int, expressionS *,
238 bfd_reloc_code_real_type);
538cd60f
AO
239
240/* This is used to construct expressions out of @GOTOFF, @PLT and @GOT
241 symbols. The relocation type is stored in X_md. */
242#define O_PIC_reloc O_md1
243
2ce4cc60
KK
244#define TARGET_USE_CFIPOP 1
245
246#define tc_cfi_frame_initial_instructions sh_cfi_frame_initial_instructions
247extern void sh_cfi_frame_initial_instructions (void);
248
249#define tc_regname_to_dw2regnum sh_regname_to_dw2regnum
8e45593f 250extern int sh_regname_to_dw2regnum (char *);
2ce4cc60
KK
251
252/* All SH instructions are multiples of 16 bits. */
253#define DWARF2_LINE_MIN_INSN_LENGTH 2
254#define DWARF2_DEFAULT_RETURN_COLUMN 17
1a1219cb 255#define DWARF2_CIE_DATA_ALIGNMENT (-4)
2ce4cc60 256
252b5132 257#endif /* OBJ_ELF */
6fd4f6cc
DD
258
259#define H_TICK_HEX 1
This page took 0.612784 seconds and 4 git commands to generate.