1 /* tc-sh.c -- Assemble code for the Renesas / SuperH SH
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
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)
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.
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. */
22 /* Written By Steve Chamberlain <sac@cygnus.com> */
29 #include "opcodes/sh-opc.h"
30 #include "safe-ctype.h"
31 #include "struc-symbol.h"
37 #include "dwarf2dbg.h"
43 expressionS immediate
;
47 const char comment_chars
[] = "!";
48 const char line_separator_chars
[] = ";";
49 const char line_comment_chars
[] = "!#";
51 static void s_uses (int);
52 static void s_uacons (int);
55 static void sh_elf_cons (int);
57 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
61 big (int ignore ATTRIBUTE_UNUSED
)
63 if (! target_big_endian
)
64 as_bad (_("directive .big encountered when option -big required"));
66 /* Stop further messages. */
67 target_big_endian
= 1;
71 little (int ignore ATTRIBUTE_UNUSED
)
73 if (target_big_endian
)
74 as_bad (_("directive .little encountered when option -little required"));
76 /* Stop further messages. */
77 target_big_endian
= 0;
80 /* This table describes all the machine specific pseudo-ops the assembler
81 has to support. The fields are:
82 pseudo-op name without dot
83 function to call to execute this pseudo-op
84 Integer arg to pass to the function. */
86 const pseudo_typeS md_pseudo_table
[] =
89 {"long", sh_elf_cons
, 4},
90 {"int", sh_elf_cons
, 4},
91 {"word", sh_elf_cons
, 2},
92 {"short", sh_elf_cons
, 2},
98 {"form", listing_psize
, 0},
99 {"little", little
, 0},
100 {"heading", listing_title
, 0},
101 {"import", s_ignore
, 0},
102 {"page", listing_eject
, 0},
103 {"program", s_ignore
, 0},
105 {"uaword", s_uacons
, 2},
106 {"ualong", s_uacons
, 4},
107 {"uaquad", s_uacons
, 8},
108 {"2byte", s_uacons
, 2},
109 {"4byte", s_uacons
, 4},
110 {"8byte", s_uacons
, 8},
112 {"mode", s_sh64_mode
, 0 },
114 /* Have the old name too. */
115 {"isa", s_sh64_mode
, 0 },
117 /* Assert that the right ABI is used. */
118 {"abi", s_sh64_abi
, 0 },
120 { "vtable_inherit", sh64_vtable_inherit
, 0 },
121 { "vtable_entry", sh64_vtable_entry
, 0 },
122 #endif /* HAVE_SH64 */
126 /*int md_reloc_size; */
128 int sh_relax
; /* set if -relax seen */
130 /* Whether -small was seen. */
134 /* preset architecture set, if given; zero otherwise. */
136 static int preset_target_arch
;
138 /* The bit mask of architectures that could
139 accommodate the insns seen so far. */
140 static int valid_arch
;
142 const char EXP_CHARS
[] = "eE";
144 /* Chars that mean this number is a floating point constant. */
147 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
149 #define C(a,b) ENCODE_RELAX(a,b)
151 #define ENCODE_RELAX(what,length) (((what) << 4) + (length))
152 #define GET_WHAT(x) ((x>>4))
154 /* These are the three types of relaxable instruction. */
155 /* These are the types of relaxable instructions; except for END which is
158 #define COND_JUMP_DELAY 2
159 #define UNCOND_JUMP 3
163 /* A 16-bit (times four) pc-relative operand, at most expanded to 32 bits. */
164 #define SH64PCREL16_32 4
165 /* A 16-bit (times four) pc-relative operand, at most expanded to 64 bits. */
166 #define SH64PCREL16_64 5
168 /* Variants of the above for adjusting the insn to PTA or PTB according to
170 #define SH64PCREL16PT_32 6
171 #define SH64PCREL16PT_64 7
173 /* A MOVI expansion, expanding to at most 32 or 64 bits. */
174 #define MOVI_IMM_32 8
175 #define MOVI_IMM_32_PCREL 9
176 #define MOVI_IMM_64 10
177 #define MOVI_IMM_64_PCREL 11
180 #else /* HAVE_SH64 */
184 #endif /* HAVE_SH64 */
190 #define UNDEF_WORD_DISP 4
196 #define UNDEF_SH64PCREL 0
197 #define SH64PCREL16 1
198 #define SH64PCREL32 2
199 #define SH64PCREL48 3
200 #define SH64PCREL64 4
201 #define SH64PCRELPLT 5
209 #define MOVI_GOTOFF 6
211 #endif /* HAVE_SH64 */
213 /* Branch displacements are from the address of the branch plus
214 four, thus all minimum and maximum values have 4 added to them. */
217 #define COND8_LENGTH 2
219 /* There is one extra instruction before the branch, so we must add
220 two more bytes to account for it. */
221 #define COND12_F 4100
222 #define COND12_M -4090
223 #define COND12_LENGTH 6
225 #define COND12_DELAY_LENGTH 4
227 /* ??? The minimum and maximum values are wrong, but this does not matter
228 since this relocation type is not supported yet. */
229 #define COND32_F (1<<30)
230 #define COND32_M -(1<<30)
231 #define COND32_LENGTH 14
233 #define UNCOND12_F 4098
234 #define UNCOND12_M -4092
235 #define UNCOND12_LENGTH 2
237 /* ??? The minimum and maximum values are wrong, but this does not matter
238 since this relocation type is not supported yet. */
239 #define UNCOND32_F (1<<30)
240 #define UNCOND32_M -(1<<30)
241 #define UNCOND32_LENGTH 14
244 /* The trivial expansion of a SH64PCREL16 relaxation is just a "PT label,
245 TRd" as is the current insn, so no extra length. Note that the "reach"
246 is calculated from the address *after* that insn, but the offset in the
247 insn is calculated from the beginning of the insn. We also need to
248 take into account the implicit 1 coded as the "A" in PTA when counting
249 forward. If PTB reaches an odd address, we trap that as an error
250 elsewhere, so we don't have to have different relaxation entries. We
251 don't add a one to the negative range, since PTB would then have the
252 farthest backward-reaching value skipped, not generated at relaxation. */
253 #define SH64PCREL16_F (32767 * 4 - 4 + 1)
254 #define SH64PCREL16_M (-32768 * 4 - 4)
255 #define SH64PCREL16_LENGTH 0
257 /* The next step is to change that PT insn into
258 MOVI ((label - datalabel Ln) >> 16) & 65535, R25
259 SHORI (label - datalabel Ln) & 65535, R25
262 which means two extra insns, 8 extra bytes. This is the limit for the
265 The expressions look a bit bad since we have to adjust this to avoid overflow on a
267 #define SH64PCREL32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
268 #define SH64PCREL32_LENGTH (2 * 4)
270 /* Similarly, we just change the MOVI and add a SHORI for the 48-bit
272 #if BFD_HOST_64BIT_LONG
273 /* The "reach" type is long, so we can only do this for a 64-bit-long
275 #define SH64PCREL32_M (((long) -1 << 30) * 2 - 4)
276 #define SH64PCREL48_F ((((long) 1 << 47) - 1) - 4)
277 #define SH64PCREL48_M (((long) -1 << 47) - 4)
278 #define SH64PCREL48_LENGTH (3 * 4)
280 /* If the host does not have 64-bit longs, just make this state identical
281 in reach to the 32-bit state. Note that we have a slightly incorrect
282 reach, but the correct one above will overflow a 32-bit number. */
283 #define SH64PCREL32_M (((long) -1 << 30) * 2)
284 #define SH64PCREL48_F SH64PCREL32_F
285 #define SH64PCREL48_M SH64PCREL32_M
286 #define SH64PCREL48_LENGTH (3 * 4)
287 #endif /* BFD_HOST_64BIT_LONG */
289 /* And similarly for the 64-bit expansion; a MOVI + SHORI + SHORI + SHORI
291 #define SH64PCREL64_LENGTH (4 * 4)
293 /* For MOVI, we make the MOVI + SHORI... expansion you can see in the
294 SH64PCREL expansions. The PCREL one is similar, but the other has no
295 pc-relative reach; it must be fully expanded in
296 shmedia_md_estimate_size_before_relax. */
297 #define MOVI_16_LENGTH 0
298 #define MOVI_16_F (32767 - 4)
299 #define MOVI_16_M (-32768 - 4)
300 #define MOVI_32_LENGTH 4
301 #define MOVI_32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
302 #define MOVI_48_LENGTH 8
304 #if BFD_HOST_64BIT_LONG
305 /* The "reach" type is long, so we can only do this for a 64-bit-long
307 #define MOVI_32_M (((long) -1 << 30) * 2 - 4)
308 #define MOVI_48_F ((((long) 1 << 47) - 1) - 4)
309 #define MOVI_48_M (((long) -1 << 47) - 4)
311 /* If the host does not have 64-bit longs, just make this state identical
312 in reach to the 32-bit state. Note that we have a slightly incorrect
313 reach, but the correct one above will overflow a 32-bit number. */
314 #define MOVI_32_M (((long) -1 << 30) * 2)
315 #define MOVI_48_F MOVI_32_F
316 #define MOVI_48_M MOVI_32_M
317 #endif /* BFD_HOST_64BIT_LONG */
319 #define MOVI_64_LENGTH 12
320 #endif /* HAVE_SH64 */
322 #define EMPTY { 0, 0, 0, 0 }
324 const relax_typeS md_relax_table
[C (END
, 0)] = {
325 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
326 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
329 /* C (COND_JUMP, COND8) */
330 { COND8_F
, COND8_M
, COND8_LENGTH
, C (COND_JUMP
, COND12
) },
331 /* C (COND_JUMP, COND12) */
332 { COND12_F
, COND12_M
, COND12_LENGTH
, C (COND_JUMP
, COND32
), },
333 /* C (COND_JUMP, COND32) */
334 { COND32_F
, COND32_M
, COND32_LENGTH
, 0, },
335 /* C (COND_JUMP, UNDEF_WORD_DISP) */
336 { 0, 0, COND32_LENGTH
, 0, },
338 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
341 /* C (COND_JUMP_DELAY, COND8) */
342 { COND8_F
, COND8_M
, COND8_LENGTH
, C (COND_JUMP_DELAY
, COND12
) },
343 /* C (COND_JUMP_DELAY, COND12) */
344 { COND12_F
, COND12_M
, COND12_DELAY_LENGTH
, C (COND_JUMP_DELAY
, COND32
), },
345 /* C (COND_JUMP_DELAY, COND32) */
346 { COND32_F
, COND32_M
, COND32_LENGTH
, 0, },
347 /* C (COND_JUMP_DELAY, UNDEF_WORD_DISP) */
348 { 0, 0, COND32_LENGTH
, 0, },
350 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
353 /* C (UNCOND_JUMP, UNCOND12) */
354 { UNCOND12_F
, UNCOND12_M
, UNCOND12_LENGTH
, C (UNCOND_JUMP
, UNCOND32
), },
355 /* C (UNCOND_JUMP, UNCOND32) */
356 { UNCOND32_F
, UNCOND32_M
, UNCOND32_LENGTH
, 0, },
358 /* C (UNCOND_JUMP, UNDEF_WORD_DISP) */
359 { 0, 0, UNCOND32_LENGTH
, 0, },
361 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
364 /* C (SH64PCREL16_32, SH64PCREL16) */
366 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16_32
, SH64PCREL32
) },
367 /* C (SH64PCREL16_32, SH64PCREL32) */
368 { 0, 0, SH64PCREL32_LENGTH
, 0 },
370 /* C (SH64PCREL16_32, SH64PCRELPLT) */
371 { 0, 0, SH64PCREL32_LENGTH
, 0 },
373 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
375 /* C (SH64PCREL16_64, SH64PCREL16) */
377 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16_64
, SH64PCREL32
) },
378 /* C (SH64PCREL16_64, SH64PCREL32) */
379 { SH64PCREL32_F
, SH64PCREL32_M
, SH64PCREL32_LENGTH
, C (SH64PCREL16_64
, SH64PCREL48
) },
380 /* C (SH64PCREL16_64, SH64PCREL48) */
381 { SH64PCREL48_F
, SH64PCREL48_M
, SH64PCREL48_LENGTH
, C (SH64PCREL16_64
, SH64PCREL64
) },
382 /* C (SH64PCREL16_64, SH64PCREL64) */
383 { 0, 0, SH64PCREL64_LENGTH
, 0 },
384 /* C (SH64PCREL16_64, SH64PCRELPLT) */
385 { 0, 0, SH64PCREL64_LENGTH
, 0 },
387 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
389 /* C (SH64PCREL16PT_32, SH64PCREL16) */
391 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16PT_32
, SH64PCREL32
) },
392 /* C (SH64PCREL16PT_32, SH64PCREL32) */
393 { 0, 0, SH64PCREL32_LENGTH
, 0 },
395 /* C (SH64PCREL16PT_32, SH64PCRELPLT) */
396 { 0, 0, SH64PCREL32_LENGTH
, 0 },
398 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
400 /* C (SH64PCREL16PT_64, SH64PCREL16) */
402 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16PT_64
, SH64PCREL32
) },
403 /* C (SH64PCREL16PT_64, SH64PCREL32) */
407 C (SH64PCREL16PT_64
, SH64PCREL48
) },
408 /* C (SH64PCREL16PT_64, SH64PCREL48) */
409 { SH64PCREL48_F
, SH64PCREL48_M
, SH64PCREL48_LENGTH
, C (SH64PCREL16PT_64
, SH64PCREL64
) },
410 /* C (SH64PCREL16PT_64, SH64PCREL64) */
411 { 0, 0, SH64PCREL64_LENGTH
, 0 },
412 /* C (SH64PCREL16PT_64, SH64PCRELPLT) */
413 { 0, 0, SH64PCREL64_LENGTH
, 0},
415 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
417 /* C (MOVI_IMM_32, UNDEF_MOVI) */
418 { 0, 0, MOVI_32_LENGTH
, 0 },
419 /* C (MOVI_IMM_32, MOVI_16) */
420 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_32
, MOVI_32
) },
421 /* C (MOVI_IMM_32, MOVI_32) */
422 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, 0 },
424 /* C (MOVI_IMM_32, MOVI_GOTOFF) */
425 { 0, 0, MOVI_32_LENGTH
, 0 },
426 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
428 /* C (MOVI_IMM_32_PCREL, MOVI_16) */
430 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_32_PCREL
, MOVI_32
) },
431 /* C (MOVI_IMM_32_PCREL, MOVI_32) */
432 { 0, 0, MOVI_32_LENGTH
, 0 },
434 /* C (MOVI_IMM_32_PCREL, MOVI_PLT) */
435 { 0, 0, MOVI_32_LENGTH
, 0 },
437 /* C (MOVI_IMM_32_PCREL, MOVI_GOTPC) */
438 { 0, 0, MOVI_32_LENGTH
, 0 },
439 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
441 /* C (MOVI_IMM_64, UNDEF_MOVI) */
442 { 0, 0, MOVI_64_LENGTH
, 0 },
443 /* C (MOVI_IMM_64, MOVI_16) */
444 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_64
, MOVI_32
) },
445 /* C (MOVI_IMM_64, MOVI_32) */
446 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, C (MOVI_IMM_64
, MOVI_48
) },
447 /* C (MOVI_IMM_64, MOVI_48) */
448 { MOVI_48_F
, MOVI_48_M
, MOVI_48_LENGTH
, C (MOVI_IMM_64
, MOVI_64
) },
449 /* C (MOVI_IMM_64, MOVI_64) */
450 { 0, 0, MOVI_64_LENGTH
, 0 },
452 /* C (MOVI_IMM_64, MOVI_GOTOFF) */
453 { 0, 0, MOVI_64_LENGTH
, 0 },
454 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
456 /* C (MOVI_IMM_64_PCREL, MOVI_16) */
458 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_32
) },
459 /* C (MOVI_IMM_64_PCREL, MOVI_32) */
460 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_48
) },
461 /* C (MOVI_IMM_64_PCREL, MOVI_48) */
462 { MOVI_48_F
, MOVI_48_M
, MOVI_48_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_64
) },
463 /* C (MOVI_IMM_64_PCREL, MOVI_64) */
464 { 0, 0, MOVI_64_LENGTH
, 0 },
465 /* C (MOVI_IMM_64_PCREL, MOVI_PLT) */
466 { 0, 0, MOVI_64_LENGTH
, 0 },
468 /* C (MOVI_IMM_64_PCREL, MOVI_GOTPC) */
469 { 0, 0, MOVI_64_LENGTH
, 0 },
470 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
472 #endif /* HAVE_SH64 */
478 static struct hash_control
*opcode_hash_control
; /* Opcode mnemonics */
482 /* Determinet whether the symbol needs any kind of PIC relocation. */
485 sh_PIC_related_p (symbolS
*sym
)
492 if (sym
== GOT_symbol
)
496 if (sh_PIC_related_p (*symbol_get_tc (sym
)))
500 exp
= symbol_get_value_expression (sym
);
502 return (exp
->X_op
== O_PIC_reloc
503 || sh_PIC_related_p (exp
->X_add_symbol
)
504 || sh_PIC_related_p (exp
->X_op_symbol
));
507 /* Determine the relocation type to be used to represent the
508 expression, that may be rearranged. */
511 sh_check_fixup (expressionS
*main_exp
, bfd_reloc_code_real_type
*r_type_p
)
513 expressionS
*exp
= main_exp
;
515 /* This is here for backward-compatibility only. GCC used to generated:
517 f@PLT + . - (.LPCS# + 2)
519 but we'd rather be able to handle this as a PIC-related reference
520 plus/minus a symbol. However, gas' parser gives us:
522 O_subtract (O_add (f@PLT, .), .LPCS#+2)
524 so we attempt to transform this into:
526 O_subtract (f@PLT, O_subtract (.LPCS#+2, .))
528 which we can handle simply below. */
529 if (exp
->X_op
== O_subtract
)
531 if (sh_PIC_related_p (exp
->X_op_symbol
))
534 exp
= symbol_get_value_expression (exp
->X_add_symbol
);
536 if (exp
&& sh_PIC_related_p (exp
->X_op_symbol
))
539 if (exp
&& exp
->X_op
== O_add
540 && sh_PIC_related_p (exp
->X_add_symbol
))
542 symbolS
*sym
= exp
->X_add_symbol
;
544 exp
->X_op
= O_subtract
;
545 exp
->X_add_symbol
= main_exp
->X_op_symbol
;
547 main_exp
->X_op_symbol
= main_exp
->X_add_symbol
;
548 main_exp
->X_add_symbol
= sym
;
550 main_exp
->X_add_number
+= exp
->X_add_number
;
551 exp
->X_add_number
= 0;
556 else if (exp
->X_op
== O_add
&& sh_PIC_related_p (exp
->X_op_symbol
))
559 if (exp
->X_op
== O_symbol
|| exp
->X_op
== O_add
|| exp
->X_op
== O_subtract
)
562 if (exp
->X_add_symbol
563 && (exp
->X_add_symbol
== GOT_symbol
565 && *symbol_get_tc (exp
->X_add_symbol
) == GOT_symbol
)))
569 case BFD_RELOC_SH_IMM_LOW16
:
570 *r_type_p
= BFD_RELOC_SH_GOTPC_LOW16
;
573 case BFD_RELOC_SH_IMM_MEDLOW16
:
574 *r_type_p
= BFD_RELOC_SH_GOTPC_MEDLOW16
;
577 case BFD_RELOC_SH_IMM_MEDHI16
:
578 *r_type_p
= BFD_RELOC_SH_GOTPC_MEDHI16
;
581 case BFD_RELOC_SH_IMM_HI16
:
582 *r_type_p
= BFD_RELOC_SH_GOTPC_HI16
;
586 case BFD_RELOC_UNUSED
:
587 *r_type_p
= BFD_RELOC_SH_GOTPC
;
596 if (exp
->X_add_symbol
&& exp
->X_add_symbol
== GOT_symbol
)
598 *r_type_p
= BFD_RELOC_SH_GOTPC
;
602 exp
= symbol_get_value_expression (exp
->X_add_symbol
);
607 if (exp
->X_op
== O_PIC_reloc
)
613 case BFD_RELOC_UNUSED
:
614 *r_type_p
= exp
->X_md
;
617 case BFD_RELOC_SH_IMM_LOW16
:
620 case BFD_RELOC_32_GOTOFF
:
621 *r_type_p
= BFD_RELOC_SH_GOTOFF_LOW16
;
624 case BFD_RELOC_SH_GOTPLT32
:
625 *r_type_p
= BFD_RELOC_SH_GOTPLT_LOW16
;
628 case BFD_RELOC_32_GOT_PCREL
:
629 *r_type_p
= BFD_RELOC_SH_GOT_LOW16
;
632 case BFD_RELOC_32_PLT_PCREL
:
633 *r_type_p
= BFD_RELOC_SH_PLT_LOW16
;
641 case BFD_RELOC_SH_IMM_MEDLOW16
:
644 case BFD_RELOC_32_GOTOFF
:
645 *r_type_p
= BFD_RELOC_SH_GOTOFF_MEDLOW16
;
648 case BFD_RELOC_SH_GOTPLT32
:
649 *r_type_p
= BFD_RELOC_SH_GOTPLT_MEDLOW16
;
652 case BFD_RELOC_32_GOT_PCREL
:
653 *r_type_p
= BFD_RELOC_SH_GOT_MEDLOW16
;
656 case BFD_RELOC_32_PLT_PCREL
:
657 *r_type_p
= BFD_RELOC_SH_PLT_MEDLOW16
;
665 case BFD_RELOC_SH_IMM_MEDHI16
:
668 case BFD_RELOC_32_GOTOFF
:
669 *r_type_p
= BFD_RELOC_SH_GOTOFF_MEDHI16
;
672 case BFD_RELOC_SH_GOTPLT32
:
673 *r_type_p
= BFD_RELOC_SH_GOTPLT_MEDHI16
;
676 case BFD_RELOC_32_GOT_PCREL
:
677 *r_type_p
= BFD_RELOC_SH_GOT_MEDHI16
;
680 case BFD_RELOC_32_PLT_PCREL
:
681 *r_type_p
= BFD_RELOC_SH_PLT_MEDHI16
;
689 case BFD_RELOC_SH_IMM_HI16
:
692 case BFD_RELOC_32_GOTOFF
:
693 *r_type_p
= BFD_RELOC_SH_GOTOFF_HI16
;
696 case BFD_RELOC_SH_GOTPLT32
:
697 *r_type_p
= BFD_RELOC_SH_GOTPLT_HI16
;
700 case BFD_RELOC_32_GOT_PCREL
:
701 *r_type_p
= BFD_RELOC_SH_GOT_HI16
;
704 case BFD_RELOC_32_PLT_PCREL
:
705 *r_type_p
= BFD_RELOC_SH_PLT_HI16
;
717 *r_type_p
= exp
->X_md
;
720 exp
->X_op
= O_symbol
;
723 main_exp
->X_add_symbol
= exp
->X_add_symbol
;
724 main_exp
->X_add_number
+= exp
->X_add_number
;
728 return (sh_PIC_related_p (exp
->X_add_symbol
)
729 || sh_PIC_related_p (exp
->X_op_symbol
));
734 /* Add expression EXP of SIZE bytes to offset OFF of fragment FRAG. */
737 sh_cons_fix_new (fragS
*frag
, int off
, int size
, expressionS
*exp
)
739 bfd_reloc_code_real_type r_type
= BFD_RELOC_UNUSED
;
741 if (sh_check_fixup (exp
, &r_type
))
742 as_bad (_("Invalid PIC expression."));
744 if (r_type
== BFD_RELOC_UNUSED
)
748 r_type
= BFD_RELOC_8
;
752 r_type
= BFD_RELOC_16
;
756 r_type
= BFD_RELOC_32
;
761 r_type
= BFD_RELOC_64
;
771 as_bad (_("unsupported BFD relocation size %u"), size
);
772 r_type
= BFD_RELOC_UNUSED
;
775 fix_new_exp (frag
, off
, size
, exp
, 0, r_type
);
778 /* The regular cons() function, that reads constants, doesn't support
779 suffixes such as @GOT, @GOTOFF and @PLT, that generate
780 machine-specific relocation types. So we must define it here. */
781 /* Clobbers input_line_pointer, checks end-of-line. */
782 /* NBYTES 1=.byte, 2=.word, 4=.long */
784 sh_elf_cons (register int nbytes
)
790 /* Update existing range to include a previous insn, if there was one. */
791 sh64_update_contents_mark (TRUE
);
793 /* We need to make sure the contents type is set to data. */
796 #endif /* HAVE_SH64 */
798 if (is_it_end_of_statement ())
800 demand_empty_rest_of_line ();
805 md_cons_align (nbytes
);
811 emit_expr (&exp
, (unsigned int) nbytes
);
813 while (*input_line_pointer
++ == ',');
815 input_line_pointer
--; /* Put terminator back into stream. */
816 if (*input_line_pointer
== '#' || *input_line_pointer
== '!')
818 while (! is_end_of_line
[(unsigned char) *input_line_pointer
++]);
821 demand_empty_rest_of_line ();
826 /* This function is called once, at assembler startup time. This should
827 set up all the tables, etc that the MD part of the assembler needs. */
832 const sh_opcode_info
*opcode
;
833 char *prev_name
= "";
837 = preset_target_arch
? preset_target_arch
: arch_sh1_up
& ~arch_sh_dsp_up
;
838 valid_arch
= target_arch
;
844 opcode_hash_control
= hash_new ();
846 /* Insert unique names into hash table. */
847 for (opcode
= sh_table
; opcode
->name
; opcode
++)
849 if (strcmp (prev_name
, opcode
->name
) != 0)
851 if (! (opcode
->arch
& target_arch
))
853 prev_name
= opcode
->name
;
854 hash_insert (opcode_hash_control
, opcode
->name
, (char *) opcode
);
861 static int reg_x
, reg_y
;
865 #define IDENT_CHAR(c) (ISALNUM (c) || (c) == '_')
867 /* Try to parse a reg name. Return the number of chars consumed. */
870 parse_reg (char *src
, int *mode
, int *reg
)
872 char l0
= TOLOWER (src
[0]);
873 char l1
= l0
? TOLOWER (src
[1]) : 0;
875 /* We use ! IDENT_CHAR for the next character after the register name, to
876 make sure that we won't accidentally recognize a symbol name such as
877 'sram' or sr_ram as being a reference to the register 'sr'. */
883 if (src
[2] >= '0' && src
[2] <= '5'
884 && ! IDENT_CHAR ((unsigned char) src
[3]))
887 *reg
= 10 + src
[2] - '0';
891 if (l1
>= '0' && l1
<= '9'
892 && ! IDENT_CHAR ((unsigned char) src
[2]))
898 if (l1
>= '0' && l1
<= '7' && strncasecmp (&src
[2], "_bank", 5) == 0
899 && ! IDENT_CHAR ((unsigned char) src
[7]))
906 if (l1
== 'e' && ! IDENT_CHAR ((unsigned char) src
[2]))
911 if (l1
== 's' && ! IDENT_CHAR ((unsigned char) src
[2]))
922 if (! IDENT_CHAR ((unsigned char) src
[2]))
928 if (TOLOWER (src
[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src
[3]))
937 if (! IDENT_CHAR ((unsigned char) src
[2]))
943 if (TOLOWER (src
[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src
[3]))
951 if (l1
== 'x' && src
[2] >= '0' && src
[2] <= '1'
952 && ! IDENT_CHAR ((unsigned char) src
[3]))
955 *reg
= 4 + (l1
- '0');
958 if (l1
== 'y' && src
[2] >= '0' && src
[2] <= '1'
959 && ! IDENT_CHAR ((unsigned char) src
[3]))
962 *reg
= 6 + (l1
- '0');
965 if (l1
== 's' && src
[2] >= '0' && src
[2] <= '3'
966 && ! IDENT_CHAR ((unsigned char) src
[3]))
971 *reg
= n
| ((~n
& 2) << 1);
976 if (l0
== 'i' && l1
&& ! IDENT_CHAR ((unsigned char) src
[2]))
998 if (l0
== 'x' && l1
>= '0' && l1
<= '1'
999 && ! IDENT_CHAR ((unsigned char) src
[2]))
1002 *reg
= A_X0_NUM
+ l1
- '0';
1006 if (l0
== 'y' && l1
>= '0' && l1
<= '1'
1007 && ! IDENT_CHAR ((unsigned char) src
[2]))
1010 *reg
= A_Y0_NUM
+ l1
- '0';
1014 if (l0
== 'm' && l1
>= '0' && l1
<= '1'
1015 && ! IDENT_CHAR ((unsigned char) src
[2]))
1018 *reg
= l1
== '0' ? A_M0_NUM
: A_M1_NUM
;
1024 && TOLOWER (src
[2]) == 'r' && ! IDENT_CHAR ((unsigned char) src
[3]))
1030 if (l0
== 's' && l1
== 'p' && TOLOWER (src
[2]) == 'c'
1031 && ! IDENT_CHAR ((unsigned char) src
[3]))
1037 if (l0
== 's' && l1
== 'g' && TOLOWER (src
[2]) == 'r'
1038 && ! IDENT_CHAR ((unsigned char) src
[3]))
1044 if (l0
== 'd' && l1
== 's' && TOLOWER (src
[2]) == 'r'
1045 && ! IDENT_CHAR ((unsigned char) src
[3]))
1051 if (l0
== 'd' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1052 && ! IDENT_CHAR ((unsigned char) src
[3]))
1058 if (l0
== 's' && l1
== 'r' && ! IDENT_CHAR ((unsigned char) src
[2]))
1064 if (l0
== 's' && l1
== 'p' && ! IDENT_CHAR ((unsigned char) src
[2]))
1071 if (l0
== 'p' && l1
== 'r' && ! IDENT_CHAR ((unsigned char) src
[2]))
1076 if (l0
== 'p' && l1
== 'c' && ! IDENT_CHAR ((unsigned char) src
[2]))
1078 /* Don't use A_DISP_PC here - that would accept stuff like 'mova pc,r0'
1079 and use an uninitialized immediate. */
1083 if (l0
== 'g' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1084 && ! IDENT_CHAR ((unsigned char) src
[3]))
1089 if (l0
== 'v' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1090 && ! IDENT_CHAR ((unsigned char) src
[3]))
1096 if (l0
== 'm' && l1
== 'a' && TOLOWER (src
[2]) == 'c'
1097 && ! IDENT_CHAR ((unsigned char) src
[4]))
1099 if (TOLOWER (src
[3]) == 'l')
1104 if (TOLOWER (src
[3]) == 'h')
1110 if (l0
== 'm' && l1
== 'o' && TOLOWER (src
[2]) == 'd'
1111 && ! IDENT_CHAR ((unsigned char) src
[3]))
1116 if (l0
== 'f' && l1
== 'r')
1120 if (src
[3] >= '0' && src
[3] <= '5'
1121 && ! IDENT_CHAR ((unsigned char) src
[4]))
1124 *reg
= 10 + src
[3] - '0';
1128 if (src
[2] >= '0' && src
[2] <= '9'
1129 && ! IDENT_CHAR ((unsigned char) src
[3]))
1132 *reg
= (src
[2] - '0');
1136 if (l0
== 'd' && l1
== 'r')
1140 if (src
[3] >= '0' && src
[3] <= '4' && ! ((src
[3] - '0') & 1)
1141 && ! IDENT_CHAR ((unsigned char) src
[4]))
1144 *reg
= 10 + src
[3] - '0';
1148 if (src
[2] >= '0' && src
[2] <= '8' && ! ((src
[2] - '0') & 1)
1149 && ! IDENT_CHAR ((unsigned char) src
[3]))
1152 *reg
= (src
[2] - '0');
1156 if (l0
== 'x' && l1
== 'd')
1160 if (src
[3] >= '0' && src
[3] <= '4' && ! ((src
[3] - '0') & 1)
1161 && ! IDENT_CHAR ((unsigned char) src
[4]))
1164 *reg
= 11 + src
[3] - '0';
1168 if (src
[2] >= '0' && src
[2] <= '8' && ! ((src
[2] - '0') & 1)
1169 && ! IDENT_CHAR ((unsigned char) src
[3]))
1172 *reg
= (src
[2] - '0') + 1;
1176 if (l0
== 'f' && l1
== 'v')
1178 if (src
[2] == '1'&& src
[3] == '2' && ! IDENT_CHAR ((unsigned char) src
[4]))
1184 if ((src
[2] == '0' || src
[2] == '4' || src
[2] == '8')
1185 && ! IDENT_CHAR ((unsigned char) src
[3]))
1188 *reg
= (src
[2] - '0');
1192 if (l0
== 'f' && l1
== 'p' && TOLOWER (src
[2]) == 'u'
1193 && TOLOWER (src
[3]) == 'l'
1194 && ! IDENT_CHAR ((unsigned char) src
[4]))
1200 if (l0
== 'f' && l1
== 'p' && TOLOWER (src
[2]) == 's'
1201 && TOLOWER (src
[3]) == 'c'
1202 && TOLOWER (src
[4]) == 'r' && ! IDENT_CHAR ((unsigned char) src
[5]))
1208 if (l0
== 'x' && l1
== 'm' && TOLOWER (src
[2]) == 't'
1209 && TOLOWER (src
[3]) == 'r'
1210 && TOLOWER (src
[4]) == 'x' && ! IDENT_CHAR ((unsigned char) src
[5]))
1220 parse_exp (char *s
, sh_operand_info
*op
)
1225 save
= input_line_pointer
;
1226 input_line_pointer
= s
;
1227 expression (&op
->immediate
);
1228 if (op
->immediate
.X_op
== O_absent
)
1229 as_bad (_("missing operand"));
1231 else if (op
->immediate
.X_op
== O_PIC_reloc
1232 || sh_PIC_related_p (op
->immediate
.X_add_symbol
)
1233 || sh_PIC_related_p (op
->immediate
.X_op_symbol
))
1234 as_bad (_("misplaced PIC operand"));
1236 new = input_line_pointer
;
1237 input_line_pointer
= save
;
1241 /* The many forms of operand:
1244 @Rn Register indirect
1257 pr, gbr, vbr, macl, mach
1261 parse_at (char *src
, sh_operand_info
*op
)
1268 /* Must be predecrement. */
1271 len
= parse_reg (src
, &mode
, &(op
->reg
));
1272 if (mode
!= A_REG_N
)
1273 as_bad (_("illegal register after @-"));
1278 else if (src
[0] == '(')
1280 /* Could be @(disp, rn), @(disp, gbr), @(disp, pc), @(r0, gbr) or
1283 len
= parse_reg (src
, &mode
, &(op
->reg
));
1284 if (len
&& mode
== A_REG_N
)
1289 as_bad (_("must be @(r0,...)"));
1294 /* Now can be rn or gbr. */
1295 len
= parse_reg (src
, &mode
, &(op
->reg
));
1305 op
->type
= A_R0_GBR
;
1307 else if (mode
== A_REG_N
)
1309 op
->type
= A_IND_R0_REG_N
;
1313 as_bad (_("syntax error in @(r0,...)"));
1318 as_bad (_("syntax error in @(r0...)"));
1323 /* Must be an @(disp,.. thing). */
1324 src
= parse_exp (src
, op
);
1327 /* Now can be rn, gbr or pc. */
1328 len
= parse_reg (src
, &mode
, &op
->reg
);
1331 if (mode
== A_REG_N
)
1333 op
->type
= A_DISP_REG_N
;
1335 else if (mode
== A_GBR
)
1337 op
->type
= A_DISP_GBR
;
1339 else if (mode
== A_PC
)
1341 /* We want @(expr, pc) to uniformly address . + expr,
1342 no matter if expr is a constant, or a more complex
1343 expression, e.g. sym-. or sym1-sym2.
1344 However, we also used to accept @(sym,pc)
1345 as addressing sym, i.e. meaning the same as plain sym.
1346 Some existing code does use the @(sym,pc) syntax, so
1347 we give it the old semantics for now, but warn about
1348 its use, so that users have some time to fix their code.
1350 Note that due to this backward compatibility hack,
1351 we'll get unexpected results when @(offset, pc) is used,
1352 and offset is a symbol that is set later to an an address
1353 difference, or an external symbol that is set to an
1354 address difference in another source file, so we want to
1355 eventually remove it. */
1356 if (op
->immediate
.X_op
== O_symbol
)
1358 op
->type
= A_DISP_PC
;
1359 as_warn (_("Deprecated syntax."));
1363 op
->type
= A_DISP_PC_ABS
;
1364 /* Such operands don't get corrected for PC==.+4, so
1365 make the correction here. */
1366 op
->immediate
.X_add_number
-= 4;
1371 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1376 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1381 as_bad (_("expecting )"));
1387 src
+= parse_reg (src
, &mode
, &(op
->reg
));
1388 if (mode
!= A_REG_N
)
1389 as_bad (_("illegal register after @"));
1396 l0
= TOLOWER (src
[0]);
1397 l1
= TOLOWER (src
[1]);
1399 if ((l0
== 'r' && l1
== '8')
1400 || (l0
== 'i' && (l1
== 'x' || l1
== 's')))
1403 op
->type
= AX_PMOD_N
;
1405 else if ( (l0
== 'r' && l1
== '9')
1406 || (l0
== 'i' && l1
== 'y'))
1409 op
->type
= AY_PMOD_N
;
1421 get_operand (char **ptr
, sh_operand_info
*op
)
1430 *ptr
= parse_exp (src
, op
);
1435 else if (src
[0] == '@')
1437 *ptr
= parse_at (src
, op
);
1440 len
= parse_reg (src
, &mode
, &(op
->reg
));
1449 /* Not a reg, the only thing left is a displacement. */
1450 *ptr
= parse_exp (src
, op
);
1451 op
->type
= A_DISP_PC
;
1457 get_operands (sh_opcode_info
*info
, char *args
, sh_operand_info
*operand
)
1462 /* The pre-processor will eliminate whitespace in front of '@'
1463 after the first argument; we may be called multiple times
1464 from assemble_ppi, so don't insist on finding whitespace here. */
1468 get_operand (&ptr
, operand
+ 0);
1475 get_operand (&ptr
, operand
+ 1);
1476 /* ??? Hack: psha/pshl have a varying operand number depending on
1477 the type of the first operand. We handle this by having the
1478 three-operand version first and reducing the number of operands
1479 parsed to two if we see that the first operand is an immediate.
1480 This works because no insn with three operands has an immediate
1481 as first operand. */
1482 if (info
->arg
[2] && operand
[0].type
!= A_IMM
)
1488 get_operand (&ptr
, operand
+ 2);
1492 operand
[2].type
= 0;
1497 operand
[1].type
= 0;
1498 operand
[2].type
= 0;
1503 operand
[0].type
= 0;
1504 operand
[1].type
= 0;
1505 operand
[2].type
= 0;
1510 /* Passed a pointer to a list of opcodes which use different
1511 addressing modes, return the opcode which matches the opcodes
1514 static sh_opcode_info
*
1515 get_specific (sh_opcode_info
*opcode
, sh_operand_info
*operands
)
1517 sh_opcode_info
*this_try
= opcode
;
1518 char *name
= opcode
->name
;
1521 while (opcode
->name
)
1523 this_try
= opcode
++;
1524 if ((this_try
->name
!= name
) && (strcmp (this_try
->name
, name
) != 0))
1526 /* We've looked so far down the table that we've run out of
1527 opcodes with the same name. */
1531 /* Look at both operands needed by the opcodes and provided by
1532 the user - since an arg test will often fail on the same arg
1533 again and again, we'll try and test the last failing arg the
1534 first on each opcode try. */
1535 for (n
= 0; this_try
->arg
[n
]; n
++)
1537 sh_operand_info
*user
= operands
+ n
;
1538 sh_arg_type arg
= this_try
->arg
[n
];
1543 if (user
->type
== A_DISP_PC_ABS
)
1553 if (user
->type
!= arg
)
1557 /* opcode needs r0 */
1558 if (user
->type
!= A_REG_N
|| user
->reg
!= 0)
1562 if (user
->type
!= A_R0_GBR
|| user
->reg
!= 0)
1566 if (user
->type
!= F_REG_N
|| user
->reg
!= 0)
1574 case A_IND_R0_REG_N
:
1583 /* Opcode needs rn */
1584 if (user
->type
!= arg
)
1589 if (user
->type
!= D_REG_N
&& user
->type
!= X_REG_N
)
1604 if (user
->type
!= arg
)
1609 if (user
->type
!= arg
)
1618 case A_IND_R0_REG_M
:
1621 /* Opcode needs rn */
1622 if (user
->type
!= arg
- A_REG_M
+ A_REG_N
)
1628 if (user
->type
!= A_DEC_N
)
1630 if (user
->reg
< 2 || user
->reg
> 5)
1636 if (user
->type
!= A_INC_N
)
1638 if (user
->reg
< 2 || user
->reg
> 5)
1644 if (user
->type
!= A_IND_N
)
1646 if (user
->reg
< 2 || user
->reg
> 5)
1652 if (user
->type
!= AX_PMOD_N
)
1654 if (user
->reg
< 2 || user
->reg
> 5)
1660 if (user
->type
!= A_INC_N
)
1662 if (user
->reg
< 4 || user
->reg
> 5)
1668 if (user
->type
!= A_IND_N
)
1670 if (user
->reg
< 4 || user
->reg
> 5)
1676 if (user
->type
!= AX_PMOD_N
)
1678 if (user
->reg
< 4 || user
->reg
> 5)
1684 if (user
->type
!= A_INC_N
)
1686 if ((user
->reg
< 4 || user
->reg
> 5)
1687 && (user
->reg
< 0 || user
->reg
> 1))
1693 if (user
->type
!= A_IND_N
)
1695 if ((user
->reg
< 4 || user
->reg
> 5)
1696 && (user
->reg
< 0 || user
->reg
> 1))
1702 if (user
->type
!= AX_PMOD_N
)
1704 if ((user
->reg
< 4 || user
->reg
> 5)
1705 && (user
->reg
< 0 || user
->reg
> 1))
1711 if (user
->type
!= A_INC_N
)
1713 if (user
->reg
< 6 || user
->reg
> 7)
1719 if (user
->type
!= A_IND_N
)
1721 if (user
->reg
< 6 || user
->reg
> 7)
1727 if (user
->type
!= AY_PMOD_N
)
1729 if (user
->reg
< 6 || user
->reg
> 7)
1735 if (user
->type
!= A_INC_N
)
1737 if ((user
->reg
< 6 || user
->reg
> 7)
1738 && (user
->reg
< 2 || user
->reg
> 3))
1744 if (user
->type
!= A_IND_N
)
1746 if ((user
->reg
< 6 || user
->reg
> 7)
1747 && (user
->reg
< 2 || user
->reg
> 3))
1753 if (user
->type
!= AY_PMOD_N
)
1755 if ((user
->reg
< 6 || user
->reg
> 7)
1756 && (user
->reg
< 2 || user
->reg
> 3))
1762 if (user
->type
!= DSP_REG_N
)
1764 if (user
->reg
!= A_A0_NUM
1765 && user
->reg
!= A_A1_NUM
)
1771 if (user
->type
!= DSP_REG_N
)
1793 if (user
->type
!= DSP_REG_N
)
1815 if (user
->type
!= DSP_REG_N
)
1837 if (user
->type
!= DSP_REG_N
)
1859 if (user
->type
!= DSP_REG_N
)
1881 if (user
->type
!= DSP_REG_N
)
1903 if (user
->type
!= DSP_REG_N
)
1925 if (user
->type
!= DSP_REG_N
)
1947 if (user
->type
!= DSP_REG_N
)
1969 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_A0_NUM
)
1973 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_X0_NUM
)
1977 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_X1_NUM
)
1981 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_Y0_NUM
)
1985 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_Y1_NUM
)
1995 /* Opcode needs rn */
1996 if (user
->type
!= arg
- F_REG_M
+ F_REG_N
)
2001 if (user
->type
!= D_REG_N
&& user
->type
!= X_REG_N
)
2006 if (user
->type
!= XMTRX_M4
)
2012 printf (_("unhandled %d\n"), arg
);
2016 if ( !(valid_arch
& this_try
->arch
))
2018 valid_arch
&= this_try
->arch
;
2028 insert (char *where
, int how
, int pcrel
, sh_operand_info
*op
)
2030 fix_new_exp (frag_now
,
2031 where
- frag_now
->fr_literal
,
2039 build_relax (sh_opcode_info
*opcode
, sh_operand_info
*op
)
2041 int high_byte
= target_big_endian
? 0 : 1;
2044 if (opcode
->arg
[0] == A_BDISP8
)
2046 int what
= (opcode
->nibbles
[1] & 4) ? COND_JUMP_DELAY
: COND_JUMP
;
2047 p
= frag_var (rs_machine_dependent
,
2048 md_relax_table
[C (what
, COND32
)].rlx_length
,
2049 md_relax_table
[C (what
, COND8
)].rlx_length
,
2051 op
->immediate
.X_add_symbol
,
2052 op
->immediate
.X_add_number
,
2054 p
[high_byte
] = (opcode
->nibbles
[0] << 4) | (opcode
->nibbles
[1]);
2056 else if (opcode
->arg
[0] == A_BDISP12
)
2058 p
= frag_var (rs_machine_dependent
,
2059 md_relax_table
[C (UNCOND_JUMP
, UNCOND32
)].rlx_length
,
2060 md_relax_table
[C (UNCOND_JUMP
, UNCOND12
)].rlx_length
,
2062 op
->immediate
.X_add_symbol
,
2063 op
->immediate
.X_add_number
,
2065 p
[high_byte
] = (opcode
->nibbles
[0] << 4);
2070 /* Insert ldrs & ldre with fancy relocations that relaxation can recognize. */
2073 insert_loop_bounds (char *output
, sh_operand_info
*operand
)
2078 /* Since the low byte of the opcode will be overwritten by the reloc, we
2079 can just stash the high byte into both bytes and ignore endianness. */
2082 insert (output
, BFD_RELOC_SH_LOOP_START
, 1, operand
);
2083 insert (output
, BFD_RELOC_SH_LOOP_END
, 1, operand
+ 1);
2087 static int count
= 0;
2089 /* If the last loop insn is a two-byte-insn, it is in danger of being
2090 swapped with the insn after it. To prevent this, create a new
2091 symbol - complete with SH_LABEL reloc - after the last loop insn.
2092 If the last loop insn is four bytes long, the symbol will be
2093 right in the middle, but four byte insns are not swapped anyways. */
2094 /* A REPEAT takes 6 bytes. The SH has a 32 bit address space.
2095 Hence a 9 digit number should be enough to count all REPEATs. */
2097 sprintf (name
, "_R%x", count
++ & 0x3fffffff);
2098 end_sym
= symbol_new (name
, undefined_section
, 0, &zero_address_frag
);
2099 /* Make this a local symbol. */
2101 SF_SET_LOCAL (end_sym
);
2102 #endif /* OBJ_COFF */
2103 symbol_table_insert (end_sym
);
2104 end_sym
->sy_value
= operand
[1].immediate
;
2105 end_sym
->sy_value
.X_add_number
+= 2;
2106 fix_new (frag_now
, frag_now_fix (), 2, end_sym
, 0, 1, BFD_RELOC_SH_LABEL
);
2109 output
= frag_more (2);
2112 insert (output
, BFD_RELOC_SH_LOOP_START
, 1, operand
);
2113 insert (output
, BFD_RELOC_SH_LOOP_END
, 1, operand
+ 1);
2115 return frag_more (2);
2118 /* Now we know what sort of opcodes it is, let's build the bytes. */
2121 build_Mytes (sh_opcode_info
*opcode
, sh_operand_info
*operand
)
2125 char *output
= frag_more (2);
2126 unsigned int size
= 2;
2127 int low_byte
= target_big_endian
? 1 : 0;
2133 for (index
= 0; index
< 4; index
++)
2135 sh_nibble_type i
= opcode
->nibbles
[index
];
2145 nbuf
[index
] = reg_n
;
2148 nbuf
[index
] = reg_m
;
2151 if (reg_n
< 2 || reg_n
> 5)
2152 as_bad (_("Invalid register: 'r%d'"), reg_n
);
2153 nbuf
[index
] = (reg_n
& 3) | 4;
2156 nbuf
[index
] = reg_n
| (reg_m
>> 2);
2159 nbuf
[index
] = reg_b
| 0x08;
2162 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY4
, 0, operand
);
2165 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY2
, 0, operand
);
2168 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4
, 0, operand
);
2171 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY4
, 0, operand
+ 1);
2174 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY2
, 0, operand
+ 1);
2177 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4
, 0, operand
+ 1);
2180 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY4
, 0, operand
);
2183 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY2
, 0, operand
);
2186 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8
, 0, operand
);
2189 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY4
, 0, operand
+ 1);
2192 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY2
, 0, operand
+ 1);
2195 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8
, 0, operand
+ 1);
2198 insert (output
, BFD_RELOC_SH_PCRELIMM8BY4
,
2199 operand
->type
!= A_DISP_PC_ABS
, operand
);
2202 insert (output
, BFD_RELOC_SH_PCRELIMM8BY2
,
2203 operand
->type
!= A_DISP_PC_ABS
, operand
);
2206 output
= insert_loop_bounds (output
, operand
);
2207 nbuf
[index
] = opcode
->nibbles
[3];
2211 printf (_("failed for %d\n"), i
);
2215 if (!target_big_endian
)
2217 output
[1] = (nbuf
[0] << 4) | (nbuf
[1]);
2218 output
[0] = (nbuf
[2] << 4) | (nbuf
[3]);
2222 output
[0] = (nbuf
[0] << 4) | (nbuf
[1]);
2223 output
[1] = (nbuf
[2] << 4) | (nbuf
[3]);
2228 /* Find an opcode at the start of *STR_P in the hash table, and set
2229 *STR_P to the first character after the last one read. */
2231 static sh_opcode_info
*
2232 find_cooked_opcode (char **str_p
)
2235 unsigned char *op_start
;
2236 unsigned char *op_end
;
2240 /* Drop leading whitespace. */
2244 /* Find the op code end.
2245 The pre-processor will eliminate whitespace in front of
2246 any '@' after the first argument; we may be called from
2247 assemble_ppi, so the opcode might be terminated by an '@'. */
2248 for (op_start
= op_end
= (unsigned char *) (str
);
2251 && !is_end_of_line
[*op_end
] && *op_end
!= ' ' && *op_end
!= '@';
2254 unsigned char c
= op_start
[nlen
];
2256 /* The machine independent code will convert CMP/EQ into cmp/EQ
2257 because it thinks the '/' is the end of the symbol. Moreover,
2258 all but the first sub-insn is a parallel processing insn won't
2259 be capitalized. Instead of hacking up the machine independent
2260 code, we just deal with it here. */
2270 as_bad (_("can't find opcode "));
2272 return (sh_opcode_info
*) hash_find (opcode_hash_control
, name
);
2275 /* Assemble a parallel processing insn. */
2276 #define DDT_BASE 0xf000 /* Base value for double data transfer insns */
2279 assemble_ppi (char *op_end
, sh_opcode_info
*opcode
)
2291 sh_operand_info operand
[3];
2293 /* Some insn ignore one or more register fields, e.g. psts machl,a0.
2294 Make sure we encode a defined insn pattern. */
2299 if (opcode
->arg
[0] != A_END
)
2300 op_end
= get_operands (opcode
, op_end
, operand
);
2302 opcode
= get_specific (opcode
, operand
);
2305 /* Couldn't find an opcode which matched the operands. */
2306 char *where
= frag_more (2);
2311 as_bad (_("invalid operands for opcode"));
2315 if (opcode
->nibbles
[0] != PPI
)
2316 as_bad (_("insn can't be combined with parallel processing insn"));
2318 switch (opcode
->nibbles
[1])
2323 as_bad (_("multiple movx specifications"));
2328 as_bad (_("multiple movy specifications"));
2334 as_bad (_("multiple movx specifications"));
2335 if ((reg_n
< 4 || reg_n
> 5)
2336 && (reg_n
< 0 || reg_n
> 1))
2337 as_bad (_("invalid movx address register"));
2338 if (movy
&& movy
!= DDT_BASE
)
2339 as_bad (_("insn cannot be combined with non-nopy"));
2340 movx
= ((((reg_n
& 1) != 0) << 9)
2341 + (((reg_n
& 4) == 0) << 8)
2343 + (opcode
->nibbles
[2] << 4)
2344 + opcode
->nibbles
[3]
2350 as_bad (_("multiple movy specifications"));
2351 if ((reg_n
< 6 || reg_n
> 7)
2352 && (reg_n
< 2 || reg_n
> 3))
2353 as_bad (_("invalid movy address register"));
2354 if (movx
&& movx
!= DDT_BASE
)
2355 as_bad (_("insn cannot be combined with non-nopx"));
2356 movy
= ((((reg_n
& 1) != 0) << 8)
2357 + (((reg_n
& 4) == 0) << 9)
2359 + (opcode
->nibbles
[2] << 4)
2360 + opcode
->nibbles
[3]
2366 as_bad (_("multiple movx specifications"));
2368 as_bad (_("previous movy requires nopx"));
2369 if (reg_n
< 4 || reg_n
> 5)
2370 as_bad (_("invalid movx address register"));
2371 if (opcode
->nibbles
[2] & 8)
2373 if (reg_m
== A_A1_NUM
)
2375 else if (reg_m
!= A_A0_NUM
)
2376 as_bad (_("invalid movx dsp register"));
2381 as_bad (_("invalid movx dsp register"));
2384 movx
+= ((reg_n
- 4) << 9) + (opcode
->nibbles
[2] << 2) + DDT_BASE
;
2389 as_bad (_("multiple movy specifications"));
2391 as_bad (_("previous movx requires nopy"));
2392 if (opcode
->nibbles
[2] & 8)
2394 /* Bit 3 in nibbles[2] is intended for bit 4 of the opcode,
2397 if (reg_m
== A_A1_NUM
)
2399 else if (reg_m
!= A_A0_NUM
)
2400 as_bad (_("invalid movy dsp register"));
2405 as_bad (_("invalid movy dsp register"));
2408 if (reg_n
< 6 || reg_n
> 7)
2409 as_bad (_("invalid movy address register"));
2410 movy
+= ((reg_n
- 6) << 8) + opcode
->nibbles
[2] + DDT_BASE
;
2414 if (operand
[0].immediate
.X_op
!= O_constant
)
2415 as_bad (_("dsp immediate shift value not constant"));
2416 field_b
= ((opcode
->nibbles
[2] << 12)
2417 | (operand
[0].immediate
.X_add_number
& 127) << 4
2424 goto try_another_opcode
;
2429 as_bad (_("multiple parallel processing specifications"));
2430 field_b
= ((opcode
->nibbles
[2] << 12) + (opcode
->nibbles
[3] << 8)
2431 + (reg_x
<< 6) + (reg_y
<< 4) + reg_n
);
2432 switch (opcode
->nibbles
[4])
2440 field_b
+= opcode
->nibbles
[4] << 4;
2448 as_bad (_("multiple condition specifications"));
2449 cond
= opcode
->nibbles
[2] << 8;
2451 goto skip_cond_check
;
2455 as_bad (_("multiple parallel processing specifications"));
2456 field_b
= ((opcode
->nibbles
[2] << 12) + (opcode
->nibbles
[3] << 8)
2457 + cond
+ (reg_x
<< 6) + (reg_y
<< 4) + reg_n
);
2459 switch (opcode
->nibbles
[4])
2467 field_b
+= opcode
->nibbles
[4] << 4;
2476 if ((field_b
& 0xef00) == 0xa100)
2478 /* pclr Dz pmuls Se,Sf,Dg */
2479 else if ((field_b
& 0xff00) == 0x8d00
2480 && (valid_arch
& arch_sh4al_dsp_up
))
2482 valid_arch
&= arch_sh4al_dsp_up
;
2486 as_bad (_("insn cannot be combined with pmuls"));
2487 switch (field_b
& 0xf)
2490 field_b
+= 0 - A_X0_NUM
;
2493 field_b
+= 1 - A_Y0_NUM
;
2496 field_b
+= 2 - A_A0_NUM
;
2499 field_b
+= 3 - A_A1_NUM
;
2502 as_bad (_("bad combined pmuls output operand"));
2504 /* Generate warning if the destination register for padd / psub
2505 and pmuls is the same ( only for A0 or A1 ).
2506 If the last nibble is 1010 then A0 is used in both
2507 padd / psub and pmuls. If it is 1111 then A1 is used
2508 as destination register in both padd / psub and pmuls. */
2510 if ((((field_b
| reg_efg
) & 0x000F) == 0x000A)
2511 || (((field_b
| reg_efg
) & 0x000F) == 0x000F))
2512 as_warn (_("destination register is same for parallel insns"));
2514 field_b
+= 0x4000 + reg_efg
;
2521 as_bad (_("condition not followed by conditionalizable insn"));
2527 opcode
= find_cooked_opcode (&op_end
);
2531 (_("unrecognized characters at end of parallel processing insn")));
2536 move_code
= movx
| movy
;
2539 /* Parallel processing insn. */
2540 unsigned long ppi_code
= (movx
| movy
| 0xf800) << 16 | field_b
;
2542 output
= frag_more (4);
2544 if (! target_big_endian
)
2546 output
[3] = ppi_code
>> 8;
2547 output
[2] = ppi_code
;
2551 output
[2] = ppi_code
>> 8;
2552 output
[3] = ppi_code
;
2554 move_code
|= 0xf800;
2558 /* Just a double data transfer. */
2559 output
= frag_more (2);
2562 if (! target_big_endian
)
2564 output
[1] = move_code
>> 8;
2565 output
[0] = move_code
;
2569 output
[0] = move_code
>> 8;
2570 output
[1] = move_code
;
2575 /* This is the guts of the machine-dependent assembler. STR points to a
2576 machine dependent instruction. This function is supposed to emit
2577 the frags/bytes it assembles to. */
2580 md_assemble (char *str
)
2582 unsigned char *op_end
;
2583 sh_operand_info operand
[3];
2584 sh_opcode_info
*opcode
;
2585 unsigned int size
= 0;
2588 if (sh64_isa_mode
== sh64_isa_shmedia
)
2590 shmedia_md_assemble (str
);
2595 /* If we've seen pseudo-directives, make sure any emitted data or
2596 frags are marked as data. */
2599 sh64_update_contents_mark (TRUE
);
2600 sh64_set_contents_type (CRT_SH5_ISA16
);
2605 #endif /* HAVE_SH64 */
2607 opcode
= find_cooked_opcode (&str
);
2612 as_bad (_("unknown opcode"));
2617 && ! seg_info (now_seg
)->tc_segment_info_data
.in_code
)
2619 /* Output a CODE reloc to tell the linker that the following
2620 bytes are instructions, not data. */
2621 fix_new (frag_now
, frag_now_fix (), 2, &abs_symbol
, 0, 0,
2623 seg_info (now_seg
)->tc_segment_info_data
.in_code
= 1;
2626 if (opcode
->nibbles
[0] == PPI
)
2628 size
= assemble_ppi (op_end
, opcode
);
2632 if (opcode
->arg
[0] == A_BDISP12
2633 || opcode
->arg
[0] == A_BDISP8
)
2635 /* Since we skip get_specific here, we have to check & update
2637 if (valid_arch
& opcode
->arch
)
2638 valid_arch
&= opcode
->arch
;
2640 as_bad (_("Delayed branches not available on SH1"));
2641 parse_exp (op_end
+ 1, &operand
[0]);
2642 build_relax (opcode
, &operand
[0]);
2646 if (opcode
->arg
[0] == A_END
)
2648 /* Ignore trailing whitespace. If there is any, it has already
2649 been compressed to a single space. */
2655 op_end
= get_operands (opcode
, op_end
, operand
);
2657 opcode
= get_specific (opcode
, operand
);
2661 /* Couldn't find an opcode which matched the operands. */
2662 char *where
= frag_more (2);
2667 as_bad (_("invalid operands for opcode"));
2672 as_bad (_("excess operands: '%s'"), op_end
);
2674 size
= build_Mytes (opcode
, operand
);
2679 #ifdef BFD_ASSEMBLER
2680 dwarf2_emit_insn (size
);
2684 /* This routine is called each time a label definition is seen. It
2685 emits a BFD_RELOC_SH_LABEL reloc if necessary. */
2688 sh_frob_label (void)
2690 static fragS
*last_label_frag
;
2691 static int last_label_offset
;
2694 && seg_info (now_seg
)->tc_segment_info_data
.in_code
)
2698 offset
= frag_now_fix ();
2699 if (frag_now
!= last_label_frag
2700 || offset
!= last_label_offset
)
2702 fix_new (frag_now
, offset
, 2, &abs_symbol
, 0, 0, BFD_RELOC_SH_LABEL
);
2703 last_label_frag
= frag_now
;
2704 last_label_offset
= offset
;
2709 /* This routine is called when the assembler is about to output some
2710 data. It emits a BFD_RELOC_SH_DATA reloc if necessary. */
2713 sh_flush_pending_output (void)
2716 && seg_info (now_seg
)->tc_segment_info_data
.in_code
)
2718 fix_new (frag_now
, frag_now_fix (), 2, &abs_symbol
, 0, 0,
2720 seg_info (now_seg
)->tc_segment_info_data
.in_code
= 0;
2725 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
2731 #ifndef BFD_ASSEMBLER
2734 tc_crawl_symbol_chain (object_headers
*headers ATTRIBUTE_UNUSED
)
2736 printf (_("call to tc_crawl_symbol_chain \n"));
2740 tc_headers_hook (object_headers
*headers ATTRIBUTE_UNUSED
)
2742 printf (_("call to tc_headers_hook \n"));
2748 /* Various routines to kill one day. */
2749 /* Equal to MAX_PRECISION in atof-ieee.c. */
2750 #define MAX_LITTLENUMS 6
2752 /* Turn a string in input_line_pointer into a floating point constant
2753 of type TYPE, and store the appropriate bytes in *LITP. The number
2754 of LITTLENUMS emitted is stored in *SIZEP . An error message is
2755 returned, or NULL on OK. */
2758 md_atof (int type
, char *litP
, int *sizeP
)
2761 LITTLENUM_TYPE words
[4];
2777 return _("bad call to md_atof");
2780 t
= atof_ieee (input_line_pointer
, type
, words
);
2782 input_line_pointer
= t
;
2786 if (! target_big_endian
)
2788 for (i
= prec
- 1; i
>= 0; i
--)
2790 md_number_to_chars (litP
, (valueT
) words
[i
], 2);
2796 for (i
= 0; i
< prec
; i
++)
2798 md_number_to_chars (litP
, (valueT
) words
[i
], 2);
2806 /* Handle the .uses pseudo-op. This pseudo-op is used just before a
2807 call instruction. It refers to a label of the instruction which
2808 loads the register which the call uses. We use it to generate a
2809 special reloc for the linker. */
2812 s_uses (int ignore ATTRIBUTE_UNUSED
)
2817 as_warn (_(".uses pseudo-op seen when not relaxing"));
2821 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
2823 as_bad (_("bad .uses format"));
2824 ignore_rest_of_line ();
2828 fix_new_exp (frag_now
, frag_now_fix (), 2, &ex
, 1, BFD_RELOC_SH_USES
);
2830 demand_empty_rest_of_line ();
2833 const char *md_shortopts
= "";
2834 struct option md_longopts
[] =
2836 #define OPTION_RELAX (OPTION_MD_BASE)
2837 #define OPTION_BIG (OPTION_MD_BASE + 1)
2838 #define OPTION_LITTLE (OPTION_BIG + 1)
2839 #define OPTION_SMALL (OPTION_LITTLE + 1)
2840 #define OPTION_DSP (OPTION_SMALL + 1)
2841 #define OPTION_ISA (OPTION_DSP + 1)
2843 {"relax", no_argument
, NULL
, OPTION_RELAX
},
2844 {"big", no_argument
, NULL
, OPTION_BIG
},
2845 {"little", no_argument
, NULL
, OPTION_LITTLE
},
2846 {"small", no_argument
, NULL
, OPTION_SMALL
},
2847 {"dsp", no_argument
, NULL
, OPTION_DSP
},
2848 {"isa", required_argument
, NULL
, OPTION_ISA
},
2850 #define OPTION_ABI (OPTION_ISA + 1)
2851 #define OPTION_NO_MIX (OPTION_ABI + 1)
2852 #define OPTION_SHCOMPACT_CONST_CRANGE (OPTION_NO_MIX + 1)
2853 #define OPTION_NO_EXPAND (OPTION_SHCOMPACT_CONST_CRANGE + 1)
2854 #define OPTION_PT32 (OPTION_NO_EXPAND + 1)
2855 {"abi", required_argument
, NULL
, OPTION_ABI
},
2856 {"no-mix", no_argument
, NULL
, OPTION_NO_MIX
},
2857 {"shcompact-const-crange", no_argument
, NULL
, OPTION_SHCOMPACT_CONST_CRANGE
},
2858 {"no-expand", no_argument
, NULL
, OPTION_NO_EXPAND
},
2859 {"expand-pt32", no_argument
, NULL
, OPTION_PT32
},
2860 #endif /* HAVE_SH64 */
2862 {NULL
, no_argument
, NULL
, 0}
2864 size_t md_longopts_size
= sizeof (md_longopts
);
2867 md_parse_option (int c
, char *arg ATTRIBUTE_UNUSED
)
2876 target_big_endian
= 1;
2880 target_big_endian
= 0;
2888 preset_target_arch
= arch_sh1_up
& ~arch_sh2e_up
;
2892 if (strcasecmp (arg
, "sh4") == 0)
2893 preset_target_arch
= arch_sh4
;
2894 else if (strcasecmp (arg
, "sh4a") == 0)
2895 preset_target_arch
= arch_sh4a
;
2896 else if (strcasecmp (arg
, "dsp") == 0)
2897 preset_target_arch
= arch_sh1_up
& ~arch_sh2e_up
;
2898 else if (strcasecmp (arg
, "fp") == 0)
2899 preset_target_arch
= arch_sh2e_up
;
2900 else if (strcasecmp (arg
, "any") == 0)
2901 preset_target_arch
= arch_sh1_up
;
2903 else if (strcasecmp (arg
, "shmedia") == 0)
2905 if (sh64_isa_mode
== sh64_isa_shcompact
)
2906 as_bad (_("Invalid combination: --isa=SHcompact with --isa=SHmedia"));
2907 sh64_isa_mode
= sh64_isa_shmedia
;
2909 else if (strcasecmp (arg
, "shcompact") == 0)
2911 if (sh64_isa_mode
== sh64_isa_shmedia
)
2912 as_bad (_("Invalid combination: --isa=SHmedia with --isa=SHcompact"));
2913 if (sh64_abi
== sh64_abi_64
)
2914 as_bad (_("Invalid combination: --abi=64 with --isa=SHcompact"));
2915 sh64_isa_mode
= sh64_isa_shcompact
;
2917 #endif /* HAVE_SH64 */
2919 as_bad ("Invalid argument to --isa option: %s", arg
);
2924 if (strcmp (arg
, "32") == 0)
2926 if (sh64_abi
== sh64_abi_64
)
2927 as_bad (_("Invalid combination: --abi=32 with --abi=64"));
2928 sh64_abi
= sh64_abi_32
;
2930 else if (strcmp (arg
, "64") == 0)
2932 if (sh64_abi
== sh64_abi_32
)
2933 as_bad (_("Invalid combination: --abi=64 with --abi=32"));
2934 if (sh64_isa_mode
== sh64_isa_shcompact
)
2935 as_bad (_("Invalid combination: --isa=SHcompact with --abi=64"));
2936 sh64_abi
= sh64_abi_64
;
2939 as_bad ("Invalid argument to --abi option: %s", arg
);
2946 case OPTION_SHCOMPACT_CONST_CRANGE
:
2947 sh64_shcompact_const_crange
= TRUE
;
2950 case OPTION_NO_EXPAND
:
2951 sh64_expand
= FALSE
;
2957 #endif /* HAVE_SH64 */
2967 md_show_usage (FILE *stream
)
2969 fprintf (stream
, _("\
2971 -little generate little endian code\n\
2972 -big generate big endian code\n\
2973 -relax alter jump instructions for long displacements\n\
2974 -small align sections to 4 byte boundaries, not 16\n\
2975 -dsp enable sh-dsp insns, and disable floating-point ISAs.\n"));
2976 fprintf (stream
, _("\
2979 | dsp same as '-dsp'\n\
2983 | shmedia set default instruction set for SH64\n\
2991 fprintf (stream
, _("\
2992 -abi=[32|64] set size of expanded SHmedia operands and object\n\
2994 -shcompact-const-crange emit code-range descriptors for constants in\n\
2995 SHcompact code sections\n\
2996 -no-mix disallow SHmedia code in the same section as\n\
2997 constants and SHcompact code\n\
2998 -no-expand do not expand MOVI, PT, PTA or PTB instructions\n\
2999 -expand-pt32 with -abi=64, expand PT, PTA and PTB instructions\n\
3001 #endif /* HAVE_SH64 */
3004 /* This struct is used to pass arguments to sh_count_relocs through
3005 bfd_map_over_sections. */
3007 struct sh_count_relocs
3009 /* Symbol we are looking for. */
3011 /* Count of relocs found. */
3015 /* Count the number of fixups in a section which refer to a particular
3016 symbol. When using BFD_ASSEMBLER, this is called via
3017 bfd_map_over_sections. */
3020 sh_count_relocs (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
, void *data
)
3022 struct sh_count_relocs
*info
= (struct sh_count_relocs
*) data
;
3023 segment_info_type
*seginfo
;
3027 seginfo
= seg_info (sec
);
3028 if (seginfo
== NULL
)
3032 for (fix
= seginfo
->fix_root
; fix
!= NULL
; fix
= fix
->fx_next
)
3034 if (fix
->fx_addsy
== sym
)
3042 /* Handle the count relocs for a particular section. When using
3043 BFD_ASSEMBLER, this is called via bfd_map_over_sections. */
3046 sh_frob_section (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
,
3047 void *ignore ATTRIBUTE_UNUSED
)
3049 segment_info_type
*seginfo
;
3052 seginfo
= seg_info (sec
);
3053 if (seginfo
== NULL
)
3056 for (fix
= seginfo
->fix_root
; fix
!= NULL
; fix
= fix
->fx_next
)
3061 struct sh_count_relocs info
;
3063 if (fix
->fx_r_type
!= BFD_RELOC_SH_USES
)
3066 /* The BFD_RELOC_SH_USES reloc should refer to a defined local
3067 symbol in the same section. */
3068 sym
= fix
->fx_addsy
;
3070 || fix
->fx_subsy
!= NULL
3071 || fix
->fx_addnumber
!= 0
3072 || S_GET_SEGMENT (sym
) != sec
3073 #if ! defined (BFD_ASSEMBLER) && defined (OBJ_COFF)
3074 || S_GET_STORAGE_CLASS (sym
) == C_EXT
3076 || S_IS_EXTERNAL (sym
))
3078 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3079 _(".uses does not refer to a local symbol in the same section"));
3083 /* Look through the fixups again, this time looking for one
3084 at the same location as sym. */
3085 val
= S_GET_VALUE (sym
);
3086 for (fscan
= seginfo
->fix_root
;
3088 fscan
= fscan
->fx_next
)
3089 if (val
== fscan
->fx_frag
->fr_address
+ fscan
->fx_where
3090 && fscan
->fx_r_type
!= BFD_RELOC_SH_ALIGN
3091 && fscan
->fx_r_type
!= BFD_RELOC_SH_CODE
3092 && fscan
->fx_r_type
!= BFD_RELOC_SH_DATA
3093 && fscan
->fx_r_type
!= BFD_RELOC_SH_LABEL
)
3097 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3098 _("can't find fixup pointed to by .uses"));
3102 if (fscan
->fx_tcbit
)
3104 /* We've already done this one. */
3108 /* The variable fscan should also be a fixup to a local symbol
3109 in the same section. */
3110 sym
= fscan
->fx_addsy
;
3112 || fscan
->fx_subsy
!= NULL
3113 || fscan
->fx_addnumber
!= 0
3114 || S_GET_SEGMENT (sym
) != sec
3115 #if ! defined (BFD_ASSEMBLER) && defined (OBJ_COFF)
3116 || S_GET_STORAGE_CLASS (sym
) == C_EXT
3118 || S_IS_EXTERNAL (sym
))
3120 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3121 _(".uses target does not refer to a local symbol in the same section"));
3125 /* Now we look through all the fixups of all the sections,
3126 counting the number of times we find a reference to sym. */
3129 #ifdef BFD_ASSEMBLER
3130 bfd_map_over_sections (stdoutput
, sh_count_relocs
, &info
);
3135 for (iscan
= SEG_E0
; iscan
< SEG_UNKNOWN
; iscan
++)
3136 sh_count_relocs ((bfd
*) NULL
, iscan
, &info
);
3143 /* Generate a BFD_RELOC_SH_COUNT fixup at the location of sym.
3144 We have already adjusted the value of sym to include the
3145 fragment address, so we undo that adjustment here. */
3146 subseg_change (sec
, 0);
3147 fix_new (fscan
->fx_frag
,
3148 S_GET_VALUE (sym
) - fscan
->fx_frag
->fr_address
,
3149 4, &abs_symbol
, info
.count
, 0, BFD_RELOC_SH_COUNT
);
3153 /* This function is called after the symbol table has been completed,
3154 but before the relocs or section contents have been written out.
3155 If we have seen any .uses pseudo-ops, they point to an instruction
3156 which loads a register with the address of a function. We look
3157 through the fixups to find where the function address is being
3158 loaded from. We then generate a COUNT reloc giving the number of
3159 times that function address is referred to. The linker uses this
3160 information when doing relaxing, to decide when it can eliminate
3161 the stored function address entirely. */
3167 shmedia_frob_file_before_adjust ();
3173 #ifdef BFD_ASSEMBLER
3174 bfd_map_over_sections (stdoutput
, sh_frob_section
, NULL
);
3179 for (iseg
= SEG_E0
; iseg
< SEG_UNKNOWN
; iseg
++)
3180 sh_frob_section ((bfd
*) NULL
, iseg
, NULL
);
3185 /* Called after relaxing. Set the correct sizes of the fragments, and
3186 create relocs so that md_apply_fix3 will fill in the correct values. */
3189 #ifdef BFD_ASSEMBLER
3190 md_convert_frag (bfd
*headers ATTRIBUTE_UNUSED
, segT seg
, fragS
*fragP
)
3192 md_convert_frag (object_headers
*headers ATTRIBUTE_UNUSED
, segT seg
,
3198 switch (fragP
->fr_subtype
)
3200 case C (COND_JUMP
, COND8
):
3201 case C (COND_JUMP_DELAY
, COND8
):
3202 subseg_change (seg
, 0);
3203 fix_new (fragP
, fragP
->fr_fix
, 2, fragP
->fr_symbol
, fragP
->fr_offset
,
3204 1, BFD_RELOC_SH_PCDISP8BY2
);
3209 case C (UNCOND_JUMP
, UNCOND12
):
3210 subseg_change (seg
, 0);
3211 fix_new (fragP
, fragP
->fr_fix
, 2, fragP
->fr_symbol
, fragP
->fr_offset
,
3212 1, BFD_RELOC_SH_PCDISP12BY2
);
3217 case C (UNCOND_JUMP
, UNCOND32
):
3218 case C (UNCOND_JUMP
, UNDEF_WORD_DISP
):
3219 if (fragP
->fr_symbol
== NULL
)
3220 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3221 _("displacement overflows 12-bit field"));
3222 else if (S_IS_DEFINED (fragP
->fr_symbol
))
3223 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3224 _("displacement to defined symbol %s overflows 12-bit field"),
3225 S_GET_NAME (fragP
->fr_symbol
));
3227 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3228 _("displacement to undefined symbol %s overflows 12-bit field"),
3229 S_GET_NAME (fragP
->fr_symbol
));
3230 /* Stabilize this frag, so we don't trip an assert. */
3231 fragP
->fr_fix
+= fragP
->fr_var
;
3235 case C (COND_JUMP
, COND12
):
3236 case C (COND_JUMP_DELAY
, COND12
):
3237 /* A bcond won't fit, so turn it into a b!cond; bra disp; nop. */
3238 /* I found that a relax failure for gcc.c-torture/execute/930628-1.c
3239 was due to gas incorrectly relaxing an out-of-range conditional
3240 branch with delay slot. It turned:
3241 bf.s L6 (slot mov.l r12,@(44,r0))
3244 2c: 8f 01 a0 8b bf.s 32 <_main+32> (slot bra L6)
3246 32: 10 cb mov.l r12,@(44,r0)
3247 Therefore, branches with delay slots have to be handled
3248 differently from ones without delay slots. */
3250 unsigned char *buffer
=
3251 (unsigned char *) (fragP
->fr_fix
+ fragP
->fr_literal
);
3252 int highbyte
= target_big_endian
? 0 : 1;
3253 int lowbyte
= target_big_endian
? 1 : 0;
3254 int delay
= fragP
->fr_subtype
== C (COND_JUMP_DELAY
, COND12
);
3256 /* Toggle the true/false bit of the bcond. */
3257 buffer
[highbyte
] ^= 0x2;
3259 /* If this is a delayed branch, we may not put the bra in the
3260 slot. So we change it to a non-delayed branch, like that:
3261 b! cond slot_label; bra disp; slot_label: slot_insn
3262 ??? We should try if swapping the conditional branch and
3263 its delay-slot insn already makes the branch reach. */
3265 /* Build a relocation to six / four bytes farther on. */
3266 subseg_change (seg
, 0);
3267 fix_new (fragP
, fragP
->fr_fix
, 2,
3268 #ifdef BFD_ASSEMBLER
3269 section_symbol (seg
),
3271 seg_info (seg
)->dot
,
3273 fragP
->fr_address
+ fragP
->fr_fix
+ (delay
? 4 : 6),
3274 1, BFD_RELOC_SH_PCDISP8BY2
);
3276 /* Set up a jump instruction. */
3277 buffer
[highbyte
+ 2] = 0xa0;
3278 buffer
[lowbyte
+ 2] = 0;
3279 fix_new (fragP
, fragP
->fr_fix
+ 2, 2, fragP
->fr_symbol
,
3280 fragP
->fr_offset
, 1, BFD_RELOC_SH_PCDISP12BY2
);
3284 buffer
[highbyte
] &= ~0x4; /* Removes delay slot from branch. */
3289 /* Fill in a NOP instruction. */
3290 buffer
[highbyte
+ 4] = 0x0;
3291 buffer
[lowbyte
+ 4] = 0x9;
3300 case C (COND_JUMP
, COND32
):
3301 case C (COND_JUMP_DELAY
, COND32
):
3302 case C (COND_JUMP
, UNDEF_WORD_DISP
):
3303 case C (COND_JUMP_DELAY
, UNDEF_WORD_DISP
):
3304 if (fragP
->fr_symbol
== NULL
)
3305 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3306 _("displacement overflows 8-bit field"));
3307 else if (S_IS_DEFINED (fragP
->fr_symbol
))
3308 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3309 _("displacement to defined symbol %s overflows 8-bit field"),
3310 S_GET_NAME (fragP
->fr_symbol
));
3312 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3313 _("displacement to undefined symbol %s overflows 8-bit field "),
3314 S_GET_NAME (fragP
->fr_symbol
));
3315 /* Stabilize this frag, so we don't trip an assert. */
3316 fragP
->fr_fix
+= fragP
->fr_var
;
3322 shmedia_md_convert_frag (headers
, seg
, fragP
, TRUE
);
3328 if (donerelax
&& !sh_relax
)
3329 as_warn_where (fragP
->fr_file
, fragP
->fr_line
,
3330 _("overflow in branch to %s; converted into longer instruction sequence"),
3331 (fragP
->fr_symbol
!= NULL
3332 ? S_GET_NAME (fragP
->fr_symbol
)
3337 md_section_align (segT seg ATTRIBUTE_UNUSED
, valueT size
)
3339 #ifdef BFD_ASSEMBLER
3342 #else /* ! OBJ_ELF */
3343 return ((size
+ (1 << bfd_get_section_alignment (stdoutput
, seg
)) - 1)
3344 & (-1 << bfd_get_section_alignment (stdoutput
, seg
)));
3345 #endif /* ! OBJ_ELF */
3346 #else /* ! BFD_ASSEMBLER */
3347 return ((size
+ (1 << section_alignment
[(int) seg
]) - 1)
3348 & (-1 << section_alignment
[(int) seg
]));
3349 #endif /* ! BFD_ASSEMBLER */
3352 /* This static variable is set by s_uacons to tell sh_cons_align that
3353 the expression does not need to be aligned. */
3355 static int sh_no_align_cons
= 0;
3357 /* This handles the unaligned space allocation pseudo-ops, such as
3358 .uaword. .uaword is just like .word, but the value does not need
3362 s_uacons (int bytes
)
3364 /* Tell sh_cons_align not to align this value. */
3365 sh_no_align_cons
= 1;
3369 /* If a .word, et. al., pseud-op is seen, warn if the value is not
3370 aligned correctly. Note that this can cause warnings to be issued
3371 when assembling initialized structured which were declared with the
3372 packed attribute. FIXME: Perhaps we should require an option to
3373 enable this warning? */
3376 sh_cons_align (int nbytes
)
3381 if (sh_no_align_cons
)
3383 /* This is an unaligned pseudo-op. */
3384 sh_no_align_cons
= 0;
3389 while ((nbytes
& 1) == 0)
3398 if (now_seg
== absolute_section
)
3400 if ((abs_section_offset
& ((1 << nalign
) - 1)) != 0)
3401 as_warn (_("misaligned data"));
3405 p
= frag_var (rs_align_test
, 1, 1, (relax_substateT
) 0,
3406 (symbolS
*) NULL
, (offsetT
) nalign
, (char *) NULL
);
3408 record_alignment (now_seg
, nalign
);
3411 /* When relaxing, we need to output a reloc for any .align directive
3412 that requests alignment to a four byte boundary or larger. This is
3413 also where we check for misaligned data. */
3416 sh_handle_align (fragS
*frag
)
3418 int bytes
= frag
->fr_next
->fr_address
- frag
->fr_address
- frag
->fr_fix
;
3420 if (frag
->fr_type
== rs_align_code
)
3422 static const unsigned char big_nop_pattern
[] = { 0x00, 0x09 };
3423 static const unsigned char little_nop_pattern
[] = { 0x09, 0x00 };
3425 char *p
= frag
->fr_literal
+ frag
->fr_fix
;
3434 if (target_big_endian
)
3436 memcpy (p
, big_nop_pattern
, sizeof big_nop_pattern
);
3437 frag
->fr_var
= sizeof big_nop_pattern
;
3441 memcpy (p
, little_nop_pattern
, sizeof little_nop_pattern
);
3442 frag
->fr_var
= sizeof little_nop_pattern
;
3445 else if (frag
->fr_type
== rs_align_test
)
3448 as_warn_where (frag
->fr_file
, frag
->fr_line
, _("misaligned data"));
3452 && (frag
->fr_type
== rs_align
3453 || frag
->fr_type
== rs_align_code
)
3454 && frag
->fr_address
+ frag
->fr_fix
> 0
3455 && frag
->fr_offset
> 1
3456 && now_seg
!= bss_section
)
3457 fix_new (frag
, frag
->fr_fix
, 2, &abs_symbol
, frag
->fr_offset
, 0,
3458 BFD_RELOC_SH_ALIGN
);
3461 /* See whether the relocation should be resolved locally. */
3464 sh_local_pcrel (fixS
*fix
)
3467 && (fix
->fx_r_type
== BFD_RELOC_SH_PCDISP8BY2
3468 || fix
->fx_r_type
== BFD_RELOC_SH_PCDISP12BY2
3469 || fix
->fx_r_type
== BFD_RELOC_SH_PCRELIMM8BY2
3470 || fix
->fx_r_type
== BFD_RELOC_SH_PCRELIMM8BY4
3471 || fix
->fx_r_type
== BFD_RELOC_8_PCREL
3472 || fix
->fx_r_type
== BFD_RELOC_SH_SWITCH16
3473 || fix
->fx_r_type
== BFD_RELOC_SH_SWITCH32
));
3476 /* See whether we need to force a relocation into the output file.
3477 This is used to force out switch and PC relative relocations when
3481 sh_force_relocation (fixS
*fix
)
3483 /* These relocations can't make it into a DSO, so no use forcing
3484 them for global symbols. */
3485 if (sh_local_pcrel (fix
))
3488 /* Make sure some relocations get emitted. */
3489 if (fix
->fx_r_type
== BFD_RELOC_SH_LOOP_START
3490 || fix
->fx_r_type
== BFD_RELOC_SH_LOOP_END
3491 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_GD_32
3492 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LD_32
3493 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_IE_32
3494 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LDO_32
3495 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LE_32
3496 || generic_force_reloc (fix
))
3502 return (fix
->fx_pcrel
3503 || SWITCH_TABLE (fix
)
3504 || fix
->fx_r_type
== BFD_RELOC_SH_COUNT
3505 || fix
->fx_r_type
== BFD_RELOC_SH_ALIGN
3506 || fix
->fx_r_type
== BFD_RELOC_SH_CODE
3507 || fix
->fx_r_type
== BFD_RELOC_SH_DATA
3509 || fix
->fx_r_type
== BFD_RELOC_SH_SHMEDIA_CODE
3511 || fix
->fx_r_type
== BFD_RELOC_SH_LABEL
);
3516 sh_fix_adjustable (fixS
*fixP
)
3518 if (fixP
->fx_r_type
== BFD_RELOC_32_PLT_PCREL
3519 || fixP
->fx_r_type
== BFD_RELOC_32_GOT_PCREL
3520 || fixP
->fx_r_type
== BFD_RELOC_SH_GOTPC
3521 || fixP
->fx_r_type
== BFD_RELOC_RVA
)
3524 /* We need the symbol name for the VTABLE entries */
3525 if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
3526 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
3533 sh_elf_final_processing (void)
3537 /* Set file-specific flags to indicate if this code needs
3538 a processor with the sh-dsp / sh2e ISA to execute. */
3540 /* SH5 and above don't know about the valid_arch arch_sh* bits defined
3541 in sh-opc.h, so check SH64 mode before checking valid_arch. */
3542 if (sh64_isa_mode
!= sh64_isa_unspecified
)
3545 #endif /* HAVE_SH64 */
3546 if (valid_arch
& arch_sh1
)
3548 else if (valid_arch
& arch_sh2
)
3550 else if (valid_arch
& arch_sh2e
)
3552 else if (valid_arch
& arch_sh_dsp
)
3554 else if (valid_arch
& arch_sh3
)
3556 else if (valid_arch
& arch_sh3_dsp
)
3558 else if (valid_arch
& arch_sh3e
)
3560 else if (valid_arch
& arch_sh4_nofpu
)
3562 else if (valid_arch
& arch_sh4
)
3564 else if (valid_arch
& arch_sh4a_nofpu
)
3565 val
= EF_SH4A_NOFPU
;
3566 else if (valid_arch
& arch_sh4a
)
3568 else if (valid_arch
& arch_sh4al_dsp
)
3573 elf_elfheader (stdoutput
)->e_flags
&= ~EF_SH_MACH_MASK
;
3574 elf_elfheader (stdoutput
)->e_flags
|= val
;
3578 /* Apply a fixup to the object file. */
3581 md_apply_fix3 (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
3583 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
3584 int lowbyte
= target_big_endian
? 1 : 0;
3585 int highbyte
= target_big_endian
? 0 : 1;
3586 long val
= (long) *valP
;
3590 #ifdef BFD_ASSEMBLER
3591 /* A difference between two symbols, the second of which is in the
3592 current section, is transformed in a PC-relative relocation to
3593 the other symbol. We have to adjust the relocation type here. */
3596 switch (fixP
->fx_r_type
)
3602 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
3605 /* Currently, we only support 32-bit PCREL relocations.
3606 We'd need a new reloc type to handle 16_PCREL, and
3607 8_PCREL is already taken for R_SH_SWITCH8, which
3608 apparently does something completely different than what
3611 bfd_set_error (bfd_error_bad_value
);
3615 bfd_set_error (bfd_error_bad_value
);
3620 /* The function adjust_reloc_syms won't convert a reloc against a weak
3621 symbol into a reloc against a section, but bfd_install_relocation
3622 will screw up if the symbol is defined, so we have to adjust val here
3623 to avoid the screw up later.
3625 For ordinary relocs, this does not happen for ELF, since for ELF,
3626 bfd_install_relocation uses the "special function" field of the
3627 howto, and does not execute the code that needs to be undone, as long
3628 as the special function does not return bfd_reloc_continue.
3629 It can happen for GOT- and PLT-type relocs the way they are
3630 described in elf32-sh.c as they use bfd_elf_generic_reloc, but it
3631 doesn't matter here since those relocs don't use VAL; see below. */
3632 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
3633 && fixP
->fx_addsy
!= NULL
3634 && S_IS_WEAK (fixP
->fx_addsy
))
3635 val
-= S_GET_VALUE (fixP
->fx_addsy
);
3638 #ifdef BFD_ASSEMBLER
3639 if (SWITCH_TABLE (fixP
))
3640 val
-= S_GET_VALUE (fixP
->fx_subsy
);
3642 if (fixP
->fx_r_type
== 0)
3644 if (fixP
->fx_size
== 2)
3645 fixP
->fx_r_type
= BFD_RELOC_16
;
3646 else if (fixP
->fx_size
== 4)
3647 fixP
->fx_r_type
= BFD_RELOC_32
;
3648 else if (fixP
->fx_size
== 1)
3649 fixP
->fx_r_type
= BFD_RELOC_8
;
3657 switch (fixP
->fx_r_type
)
3659 case BFD_RELOC_SH_IMM4
:
3661 *buf
= (*buf
& 0xf0) | (val
& 0xf);
3664 case BFD_RELOC_SH_IMM4BY2
:
3667 *buf
= (*buf
& 0xf0) | ((val
>> 1) & 0xf);
3670 case BFD_RELOC_SH_IMM4BY4
:
3673 *buf
= (*buf
& 0xf0) | ((val
>> 2) & 0xf);
3676 case BFD_RELOC_SH_IMM8BY2
:
3682 case BFD_RELOC_SH_IMM8BY4
:
3689 case BFD_RELOC_SH_IMM8
:
3690 /* Sometimes the 8 bit value is sign extended (e.g., add) and
3691 sometimes it is not (e.g., and). We permit any 8 bit value.
3692 Note that adding further restrictions may invalidate
3693 reasonable looking assembly code, such as ``and -0x1,r0''. */
3699 case BFD_RELOC_SH_PCRELIMM8BY4
:
3700 /* The lower two bits of the PC are cleared before the
3701 displacement is added in. We can assume that the destination
3702 is on a 4 byte boundary. If this instruction is also on a 4
3703 byte boundary, then we want
3705 and target - here is a multiple of 4.
3706 Otherwise, we are on a 2 byte boundary, and we want
3707 (target - (here - 2)) / 4
3708 and target - here is not a multiple of 4. Computing
3709 (target - (here - 2)) / 4 == (target - here + 2) / 4
3710 works for both cases, since in the first case the addition of
3711 2 will be removed by the division. target - here is in the
3713 val
= (val
+ 2) / 4;
3715 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
3719 case BFD_RELOC_SH_PCRELIMM8BY2
:
3722 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
3726 case BFD_RELOC_SH_PCDISP8BY2
:
3728 if (val
< -0x80 || val
> 0x7f)
3729 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
3733 case BFD_RELOC_SH_PCDISP12BY2
:
3735 if (val
< -0x800 || val
> 0x7ff)
3736 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
3737 buf
[lowbyte
] = val
& 0xff;
3738 buf
[highbyte
] |= (val
>> 8) & 0xf;
3742 case BFD_RELOC_32_PCREL
:
3743 md_number_to_chars (buf
, val
, 4);
3747 md_number_to_chars (buf
, val
, 2);
3750 case BFD_RELOC_SH_USES
:
3751 /* Pass the value into sh_coff_reloc_mangle. */
3752 fixP
->fx_addnumber
= val
;
3755 case BFD_RELOC_SH_COUNT
:
3756 case BFD_RELOC_SH_ALIGN
:
3757 case BFD_RELOC_SH_CODE
:
3758 case BFD_RELOC_SH_DATA
:
3759 case BFD_RELOC_SH_LABEL
:
3760 /* Nothing to do here. */
3763 case BFD_RELOC_SH_LOOP_START
:
3764 case BFD_RELOC_SH_LOOP_END
:
3766 case BFD_RELOC_VTABLE_INHERIT
:
3767 case BFD_RELOC_VTABLE_ENTRY
:
3772 case BFD_RELOC_32_PLT_PCREL
:
3773 /* Make the jump instruction point to the address of the operand. At
3774 runtime we merely add the offset to the actual PLT entry. */
3775 * valP
= 0xfffffffc;
3776 val
= fixP
->fx_offset
;
3778 val
-= S_GET_VALUE (fixP
->fx_subsy
);
3779 fixP
->fx_addnumber
= val
;
3780 md_number_to_chars (buf
, val
, 4);
3783 case BFD_RELOC_SH_GOTPC
:
3784 /* This is tough to explain. We end up with this one if we have
3785 operands that look like "_GLOBAL_OFFSET_TABLE_+[.-.L284]".
3786 The goal here is to obtain the absolute address of the GOT,
3787 and it is strongly preferable from a performance point of
3788 view to avoid using a runtime relocation for this. There are
3789 cases where you have something like:
3791 .long _GLOBAL_OFFSET_TABLE_+[.-.L66]
3793 and here no correction would be required. Internally in the
3794 assembler we treat operands of this form as not being pcrel
3795 since the '.' is explicitly mentioned, and I wonder whether
3796 it would simplify matters to do it this way. Who knows. In
3797 earlier versions of the PIC patches, the pcrel_adjust field
3798 was used to store the correction, but since the expression is
3799 not pcrel, I felt it would be confusing to do it this way. */
3801 md_number_to_chars (buf
, val
, 4);
3804 case BFD_RELOC_SH_TLS_GD_32
:
3805 case BFD_RELOC_SH_TLS_LD_32
:
3806 case BFD_RELOC_SH_TLS_IE_32
:
3807 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
3809 case BFD_RELOC_32_GOT_PCREL
:
3810 case BFD_RELOC_SH_GOTPLT32
:
3811 * valP
= 0; /* Fully resolved at runtime. No addend. */
3812 md_number_to_chars (buf
, 0, 4);
3815 case BFD_RELOC_SH_TLS_LDO_32
:
3816 case BFD_RELOC_SH_TLS_LE_32
:
3817 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
3819 case BFD_RELOC_32_GOTOFF
:
3820 md_number_to_chars (buf
, val
, 4);
3826 shmedia_md_apply_fix3 (fixP
, valP
);
3835 if ((val
& ((1 << shift
) - 1)) != 0)
3836 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("misaligned offset"));
3840 val
= ((val
>> shift
)
3841 | ((long) -1 & ~ ((long) -1 >> shift
)));
3843 if (max
!= 0 && (val
< min
|| val
> max
))
3844 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("offset out of range"));
3846 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
3850 /* Called just before address relaxation. Return the length
3851 by which a fragment must grow to reach it's destination. */
3854 md_estimate_size_before_relax (fragS
*fragP
, segT segment_type
)
3858 switch (fragP
->fr_subtype
)
3862 return shmedia_md_estimate_size_before_relax (fragP
, segment_type
);
3868 case C (UNCOND_JUMP
, UNDEF_DISP
):
3869 /* Used to be a branch to somewhere which was unknown. */
3870 if (!fragP
->fr_symbol
)
3872 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNCOND12
);
3874 else if (S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
3876 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNCOND12
);
3880 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNDEF_WORD_DISP
);
3884 case C (COND_JUMP
, UNDEF_DISP
):
3885 case C (COND_JUMP_DELAY
, UNDEF_DISP
):
3886 what
= GET_WHAT (fragP
->fr_subtype
);
3887 /* Used to be a branch to somewhere which was unknown. */
3888 if (fragP
->fr_symbol
3889 && S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
3891 /* Got a symbol and it's defined in this segment, become byte
3892 sized - maybe it will fix up. */
3893 fragP
->fr_subtype
= C (what
, COND8
);
3895 else if (fragP
->fr_symbol
)
3897 /* Its got a segment, but its not ours, so it will always be long. */
3898 fragP
->fr_subtype
= C (what
, UNDEF_WORD_DISP
);
3902 /* We know the abs value. */
3903 fragP
->fr_subtype
= C (what
, COND8
);
3907 case C (UNCOND_JUMP
, UNCOND12
):
3908 case C (UNCOND_JUMP
, UNCOND32
):
3909 case C (UNCOND_JUMP
, UNDEF_WORD_DISP
):
3910 case C (COND_JUMP
, COND8
):
3911 case C (COND_JUMP
, COND12
):
3912 case C (COND_JUMP
, COND32
):
3913 case C (COND_JUMP
, UNDEF_WORD_DISP
):
3914 case C (COND_JUMP_DELAY
, COND8
):
3915 case C (COND_JUMP_DELAY
, COND12
):
3916 case C (COND_JUMP_DELAY
, COND32
):
3917 case C (COND_JUMP_DELAY
, UNDEF_WORD_DISP
):
3918 /* When relaxing a section for the second time, we don't need to
3919 do anything besides return the current size. */
3923 fragP
->fr_var
= md_relax_table
[fragP
->fr_subtype
].rlx_length
;
3924 return fragP
->fr_var
;
3927 /* Put number into target byte order. */
3930 md_number_to_chars (char *ptr
, valueT use
, int nbytes
)
3933 /* We might need to set the contents type to data. */
3934 sh64_flag_output ();
3937 if (! target_big_endian
)
3938 number_to_chars_littleendian (ptr
, use
, nbytes
);
3940 number_to_chars_bigendian (ptr
, use
, nbytes
);
3943 /* This version is used in obj-coff.c when not using BFD_ASSEMBLER.
3944 eg for the sh-hms target. */
3947 md_pcrel_from (fixS
*fixP
)
3949 return fixP
->fx_size
+ fixP
->fx_where
+ fixP
->fx_frag
->fr_address
+ 2;
3953 md_pcrel_from_section (fixS
*fixP
, segT sec
)
3955 if (! sh_local_pcrel (fixP
)
3956 && fixP
->fx_addsy
!= (symbolS
*) NULL
3957 && (generic_force_reloc (fixP
)
3958 || S_GET_SEGMENT (fixP
->fx_addsy
) != sec
))
3960 /* The symbol is undefined (or is defined but not in this section,
3961 or we're not sure about it being the final definition). Let the
3962 linker figure it out. We need to adjust the subtraction of a
3963 symbol to the position of the relocated data, though. */
3964 return fixP
->fx_subsy
? fixP
->fx_where
+ fixP
->fx_frag
->fr_address
: 0;
3967 return md_pcrel_from (fixP
);
3973 tc_coff_sizemachdep (fragS
*frag
)
3975 return md_relax_table
[frag
->fr_subtype
].rlx_length
;
3978 #endif /* OBJ_COFF */
3980 #ifndef BFD_ASSEMBLER
3983 /* Map BFD relocs to SH COFF relocs. */
3987 bfd_reloc_code_real_type bfd_reloc
;
3991 static const struct reloc_map coff_reloc_map
[] =
3993 { BFD_RELOC_32
, R_SH_IMM32
},
3994 { BFD_RELOC_16
, R_SH_IMM16
},
3995 { BFD_RELOC_8
, R_SH_IMM8
},
3996 { BFD_RELOC_SH_PCDISP8BY2
, R_SH_PCDISP8BY2
},
3997 { BFD_RELOC_SH_PCDISP12BY2
, R_SH_PCDISP
},
3998 { BFD_RELOC_SH_IMM4
, R_SH_IMM4
},
3999 { BFD_RELOC_SH_IMM4BY2
, R_SH_IMM4BY2
},
4000 { BFD_RELOC_SH_IMM4BY4
, R_SH_IMM4BY4
},
4001 { BFD_RELOC_SH_IMM8
, R_SH_IMM8
},
4002 { BFD_RELOC_SH_IMM8BY2
, R_SH_IMM8BY2
},
4003 { BFD_RELOC_SH_IMM8BY4
, R_SH_IMM8BY4
},
4004 { BFD_RELOC_SH_PCRELIMM8BY2
, R_SH_PCRELIMM8BY2
},
4005 { BFD_RELOC_SH_PCRELIMM8BY4
, R_SH_PCRELIMM8BY4
},
4006 { BFD_RELOC_8_PCREL
, R_SH_SWITCH8
},
4007 { BFD_RELOC_SH_SWITCH16
, R_SH_SWITCH16
},
4008 { BFD_RELOC_SH_SWITCH32
, R_SH_SWITCH32
},
4009 { BFD_RELOC_SH_USES
, R_SH_USES
},
4010 { BFD_RELOC_SH_COUNT
, R_SH_COUNT
},
4011 { BFD_RELOC_SH_ALIGN
, R_SH_ALIGN
},
4012 { BFD_RELOC_SH_CODE
, R_SH_CODE
},
4013 { BFD_RELOC_SH_DATA
, R_SH_DATA
},
4014 { BFD_RELOC_SH_LABEL
, R_SH_LABEL
},
4015 { BFD_RELOC_UNUSED
, 0 }
4018 /* Adjust a reloc for the SH. This is similar to the generic code,
4019 but does some minor tweaking. */
4022 sh_coff_reloc_mangle (segment_info_type
*seg
, fixS
*fix
,
4023 struct internal_reloc
*intr
, unsigned int paddr
)
4025 symbolS
*symbol_ptr
= fix
->fx_addsy
;
4028 intr
->r_vaddr
= paddr
+ fix
->fx_frag
->fr_address
+ fix
->fx_where
;
4030 if (! SWITCH_TABLE (fix
))
4032 const struct reloc_map
*rm
;
4034 for (rm
= coff_reloc_map
; rm
->bfd_reloc
!= BFD_RELOC_UNUSED
; rm
++)
4035 if (rm
->bfd_reloc
== (bfd_reloc_code_real_type
) fix
->fx_r_type
)
4037 if (rm
->bfd_reloc
== BFD_RELOC_UNUSED
)
4038 as_bad_where (fix
->fx_file
, fix
->fx_line
,
4039 _("Can not represent %s relocation in this object file format"),
4040 bfd_get_reloc_code_name (fix
->fx_r_type
));
4041 intr
->r_type
= rm
->sh_reloc
;
4048 if (fix
->fx_r_type
== BFD_RELOC_16
)
4049 intr
->r_type
= R_SH_SWITCH16
;
4050 else if (fix
->fx_r_type
== BFD_RELOC_8
)
4051 intr
->r_type
= R_SH_SWITCH8
;
4052 else if (fix
->fx_r_type
== BFD_RELOC_32
)
4053 intr
->r_type
= R_SH_SWITCH32
;
4057 /* For a switch reloc, we set r_offset to the difference between
4058 the reloc address and the subtrahend. When the linker is
4059 doing relaxing, it can use the determine the starting and
4060 ending points of the switch difference expression. */
4061 intr
->r_offset
= intr
->r_vaddr
- S_GET_VALUE (fix
->fx_subsy
);
4064 /* PC relative relocs are always against the current section. */
4065 if (symbol_ptr
== NULL
)
4067 switch (fix
->fx_r_type
)
4069 case BFD_RELOC_SH_PCRELIMM8BY2
:
4070 case BFD_RELOC_SH_PCRELIMM8BY4
:
4071 case BFD_RELOC_SH_PCDISP8BY2
:
4072 case BFD_RELOC_SH_PCDISP12BY2
:
4073 case BFD_RELOC_SH_USES
:
4074 symbol_ptr
= seg
->dot
;
4081 if (fix
->fx_r_type
== BFD_RELOC_SH_USES
)
4083 /* We can't store the offset in the object file, since this
4084 reloc does not take up any space, so we store it in r_offset.
4085 The fx_addnumber field was set in md_apply_fix3. */
4086 intr
->r_offset
= fix
->fx_addnumber
;
4088 else if (fix
->fx_r_type
== BFD_RELOC_SH_COUNT
)
4090 /* We can't store the count in the object file, since this reloc
4091 does not take up any space, so we store it in r_offset. The
4092 fx_offset field was set when the fixup was created in
4093 sh_coff_frob_file. */
4094 intr
->r_offset
= fix
->fx_offset
;
4095 /* This reloc is always absolute. */
4098 else if (fix
->fx_r_type
== BFD_RELOC_SH_ALIGN
)
4100 /* Store the alignment in the r_offset field. */
4101 intr
->r_offset
= fix
->fx_offset
;
4102 /* This reloc is always absolute. */
4105 else if (fix
->fx_r_type
== BFD_RELOC_SH_CODE
4106 || fix
->fx_r_type
== BFD_RELOC_SH_DATA
4107 || fix
->fx_r_type
== BFD_RELOC_SH_LABEL
)
4109 /* These relocs are always absolute. */
4113 /* Turn the segment of the symbol into an offset. */
4114 if (symbol_ptr
!= NULL
)
4116 dot
= segment_info
[S_GET_SEGMENT (symbol_ptr
)].dot
;
4118 intr
->r_symndx
= dot
->sy_number
;
4120 intr
->r_symndx
= symbol_ptr
->sy_number
;
4123 intr
->r_symndx
= -1;
4126 #endif /* OBJ_COFF */
4127 #endif /* ! BFD_ASSEMBLER */
4129 #ifdef BFD_ASSEMBLER
4131 /* Create a reloc. */
4134 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
4137 bfd_reloc_code_real_type r_type
;
4139 rel
= (arelent
*) xmalloc (sizeof (arelent
));
4140 rel
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4141 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4142 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4144 r_type
= fixp
->fx_r_type
;
4146 if (SWITCH_TABLE (fixp
))
4148 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
4150 if (r_type
== BFD_RELOC_16
)
4151 r_type
= BFD_RELOC_SH_SWITCH16
;
4152 else if (r_type
== BFD_RELOC_8
)
4153 r_type
= BFD_RELOC_8_PCREL
;
4154 else if (r_type
== BFD_RELOC_32
)
4155 r_type
= BFD_RELOC_SH_SWITCH32
;
4159 else if (r_type
== BFD_RELOC_SH_USES
)
4160 rel
->addend
= fixp
->fx_addnumber
;
4161 else if (r_type
== BFD_RELOC_SH_COUNT
)
4162 rel
->addend
= fixp
->fx_offset
;
4163 else if (r_type
== BFD_RELOC_SH_ALIGN
)
4164 rel
->addend
= fixp
->fx_offset
;
4165 else if (r_type
== BFD_RELOC_VTABLE_INHERIT
4166 || r_type
== BFD_RELOC_VTABLE_ENTRY
)
4167 rel
->addend
= fixp
->fx_offset
;
4168 else if (r_type
== BFD_RELOC_SH_LOOP_START
4169 || r_type
== BFD_RELOC_SH_LOOP_END
)
4170 rel
->addend
= fixp
->fx_offset
;
4171 else if (r_type
== BFD_RELOC_SH_LABEL
&& fixp
->fx_pcrel
)
4174 rel
->address
= rel
->addend
= fixp
->fx_offset
;
4177 else if (shmedia_init_reloc (rel
, fixp
))
4180 else if (fixp
->fx_pcrel
)
4181 rel
->addend
= fixp
->fx_addnumber
;
4182 else if (r_type
== BFD_RELOC_32
|| r_type
== BFD_RELOC_32_GOTOFF
)
4183 rel
->addend
= fixp
->fx_addnumber
;
4187 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, r_type
);
4189 if (rel
->howto
->type
== R_SH_IND12W
)
4190 rel
->addend
+= fixp
->fx_offset
- 4;
4192 if (rel
->howto
== NULL
)
4194 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
4195 _("Cannot represent relocation type %s"),
4196 bfd_get_reloc_code_name (r_type
));
4197 /* Set howto to a garbage value so that we can keep going. */
4198 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_32
);
4199 assert (rel
->howto
!= NULL
);
4206 inline static char *
4207 sh_end_of_match (char *cont
, char *what
)
4209 int len
= strlen (what
);
4211 if (strncasecmp (cont
, what
, strlen (what
)) == 0
4212 && ! is_part_of_name (cont
[len
]))
4219 sh_parse_name (char const *name
, expressionS
*exprP
, char *nextcharP
)
4221 char *next
= input_line_pointer
;
4226 exprP
->X_op_symbol
= NULL
;
4228 if (strcmp (name
, GLOBAL_OFFSET_TABLE_NAME
) == 0)
4231 GOT_symbol
= symbol_find_or_make (name
);
4233 exprP
->X_add_symbol
= GOT_symbol
;
4235 /* If we have an absolute symbol or a reg, then we know its
4237 segment
= S_GET_SEGMENT (exprP
->X_add_symbol
);
4238 if (segment
== absolute_section
)
4240 exprP
->X_op
= O_constant
;
4241 exprP
->X_add_number
= S_GET_VALUE (exprP
->X_add_symbol
);
4242 exprP
->X_add_symbol
= NULL
;
4244 else if (segment
== reg_section
)
4246 exprP
->X_op
= O_register
;
4247 exprP
->X_add_number
= S_GET_VALUE (exprP
->X_add_symbol
);
4248 exprP
->X_add_symbol
= NULL
;
4252 exprP
->X_op
= O_symbol
;
4253 exprP
->X_add_number
= 0;
4259 exprP
->X_add_symbol
= symbol_find_or_make (name
);
4261 if (*nextcharP
!= '@')
4263 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTOFF")))
4264 reloc_type
= BFD_RELOC_32_GOTOFF
;
4265 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTPLT")))
4266 reloc_type
= BFD_RELOC_SH_GOTPLT32
;
4267 else if ((next_end
= sh_end_of_match (next
+ 1, "GOT")))
4268 reloc_type
= BFD_RELOC_32_GOT_PCREL
;
4269 else if ((next_end
= sh_end_of_match (next
+ 1, "PLT")))
4270 reloc_type
= BFD_RELOC_32_PLT_PCREL
;
4271 else if ((next_end
= sh_end_of_match (next
+ 1, "TLSGD")))
4272 reloc_type
= BFD_RELOC_SH_TLS_GD_32
;
4273 else if ((next_end
= sh_end_of_match (next
+ 1, "TLSLDM")))
4274 reloc_type
= BFD_RELOC_SH_TLS_LD_32
;
4275 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTTPOFF")))
4276 reloc_type
= BFD_RELOC_SH_TLS_IE_32
;
4277 else if ((next_end
= sh_end_of_match (next
+ 1, "TPOFF")))
4278 reloc_type
= BFD_RELOC_SH_TLS_LE_32
;
4279 else if ((next_end
= sh_end_of_match (next
+ 1, "DTPOFF")))
4280 reloc_type
= BFD_RELOC_SH_TLS_LDO_32
;
4284 *input_line_pointer
= *nextcharP
;
4285 input_line_pointer
= next_end
;
4286 *nextcharP
= *input_line_pointer
;
4287 *input_line_pointer
= '\0';
4289 exprP
->X_op
= O_PIC_reloc
;
4290 exprP
->X_add_number
= 0;
4291 exprP
->X_md
= reloc_type
;
4296 #endif /* BFD_ASSEMBLER */