1 /* tc-sh.c -- Assemble code for the Hitachi Super-H
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 PARAMS ((int));
53 static void sh_count_relocs PARAMS ((bfd *, segT, PTR));
54 static void sh_frob_section PARAMS ((bfd *, segT, PTR));
56 static void s_uacons PARAMS ((int));
57 static sh_opcode_info *find_cooked_opcode PARAMS ((char **));
58 static unsigned int assemble_ppi PARAMS ((char *, sh_opcode_info *));
59 static void little PARAMS ((int));
60 static void big PARAMS ((int));
61 static int parse_reg PARAMS ((char *, int *, int *));
62 static char *parse_exp PARAMS ((char *, sh_operand_info *));
63 static char *parse_at PARAMS ((char *, sh_operand_info *));
64 static void get_operand PARAMS ((char **, sh_operand_info *));
65 static char *get_operands
66 PARAMS ((sh_opcode_info *, char *, sh_operand_info *));
67 static sh_opcode_info *get_specific
68 PARAMS ((sh_opcode_info *, sh_operand_info *));
69 static void insert PARAMS ((char *, int, int, sh_operand_info *));
70 static void build_relax PARAMS ((sh_opcode_info *, sh_operand_info *));
71 static char *insert_loop_bounds PARAMS ((char *, sh_operand_info *));
72 static unsigned int build_Mytes
73 PARAMS ((sh_opcode_info *, sh_operand_info *));
74 static bfd_boolean sh_local_pcrel PARAMS ((fixS *fix));
77 static void sh_elf_cons PARAMS ((int));
79 inline static int sh_PIC_related_p PARAMS ((symbolS *));
80 static int sh_check_fixup PARAMS ((expressionS *, bfd_reloc_code_real_type *));
81 inline static char *sh_end_of_match PARAMS ((char *, char *));
83 symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
88 int ignore ATTRIBUTE_UNUSED;
90 if (! target_big_endian)
91 as_bad (_("directive .big encountered when option -big required"));
93 /* Stop further messages. */
94 target_big_endian = 1;
99 int ignore ATTRIBUTE_UNUSED;
101 if (target_big_endian)
102 as_bad (_("directive .little encountered when option -little required"));
104 /* Stop further messages. */
105 target_big_endian = 0;
108 /* This table describes all the machine specific pseudo-ops the assembler
109 has to support. The fields are:
110 pseudo-op name without dot
111 function to call to execute this pseudo-op
112 Integer arg to pass to the function. */
114 const pseudo_typeS md_pseudo_table[] =
117 {"long", sh_elf_cons, 4},
118 {"int", sh_elf_cons, 4},
119 {"word", sh_elf_cons, 2},
120 {"short", sh_elf_cons, 2},
126 {"form", listing_psize, 0},
127 {"little", little, 0},
128 {"heading", listing_title, 0},
129 {"import", s_ignore, 0},
130 {"page", listing_eject, 0},
131 {"program", s_ignore, 0},
133 {"uaword", s_uacons, 2},
134 {"ualong", s_uacons, 4},
135 {"uaquad", s_uacons, 8},
136 {"2byte", s_uacons, 2},
137 {"4byte", s_uacons, 4},
138 {"8byte", s_uacons, 8},
140 {"file", (void (*) PARAMS ((int))) dwarf2_directive_file, 0 },
141 {"loc", dwarf2_directive_loc, 0 },
144 {"mode", s_sh64_mode, 0 },
146 /* Have the old name too. */
147 {"isa", s_sh64_mode, 0 },
149 /* Assert that the right ABI is used. */
150 {"abi", s_sh64_abi, 0 },
152 { "vtable_inherit", sh64_vtable_inherit, 0 },
153 { "vtable_entry", sh64_vtable_entry, 0 },
154 #endif /* HAVE_SH64 */
158 /*int md_reloc_size; */
160 int sh_relax; /* set if -relax seen */
162 /* Whether -small was seen. */
166 /* Whether -dsp was seen. */
170 /* The bit mask of architectures that could
171 accomodate the insns seen so far. */
172 static int valid_arch;
174 const char EXP_CHARS[] = "eE";
176 /* Chars that mean this number is a floating point constant. */
179 const char FLT_CHARS[] = "rRsSfFdDxXpP";
181 #define C(a,b) ENCODE_RELAX(a,b)
183 #define ENCODE_RELAX(what,length) (((what) << 4) + (length))
184 #define GET_WHAT(x) ((x>>4))
186 /* These are the three types of relaxable instrction. */
187 /* These are the types of relaxable instructions; except for END which is
190 #define COND_JUMP_DELAY 2
191 #define UNCOND_JUMP 3
195 /* A 16-bit (times four) pc-relative operand, at most expanded to 32 bits. */
196 #define SH64PCREL16_32 4
197 /* A 16-bit (times four) pc-relative operand, at most expanded to 64 bits. */
198 #define SH64PCREL16_64 5
200 /* Variants of the above for adjusting the insn to PTA or PTB according to
202 #define SH64PCREL16PT_32 6
203 #define SH64PCREL16PT_64 7
205 /* A MOVI expansion, expanding to at most 32 or 64 bits. */
206 #define MOVI_IMM_32 8
207 #define MOVI_IMM_32_PCREL 9
208 #define MOVI_IMM_64 10
209 #define MOVI_IMM_64_PCREL 11
212 #else /* HAVE_SH64 */
216 #endif /* HAVE_SH64 */
222 #define UNDEF_WORD_DISP 4
228 #define UNDEF_SH64PCREL 0
229 #define SH64PCREL16 1
230 #define SH64PCREL32 2
231 #define SH64PCREL48 3
232 #define SH64PCREL64 4
233 #define SH64PCRELPLT 5
241 #define MOVI_GOTOFF 6
243 #endif /* HAVE_SH64 */
245 /* Branch displacements are from the address of the branch plus
246 four, thus all minimum and maximum values have 4 added to them. */
249 #define COND8_LENGTH 2
251 /* There is one extra instruction before the branch, so we must add
252 two more bytes to account for it. */
253 #define COND12_F 4100
254 #define COND12_M -4090
255 #define COND12_LENGTH 6
257 #define COND12_DELAY_LENGTH 4
259 /* ??? The minimum and maximum values are wrong, but this does not matter
260 since this relocation type is not supported yet. */
261 #define COND32_F (1<<30)
262 #define COND32_M -(1<<30)
263 #define COND32_LENGTH 14
265 #define UNCOND12_F 4098
266 #define UNCOND12_M -4092
267 #define UNCOND12_LENGTH 2
269 /* ??? The minimum and maximum values are wrong, but this does not matter
270 since this relocation type is not supported yet. */
271 #define UNCOND32_F (1<<30)
272 #define UNCOND32_M -(1<<30)
273 #define UNCOND32_LENGTH 14
276 /* The trivial expansion of a SH64PCREL16 relaxation is just a "PT label,
277 TRd" as is the current insn, so no extra length. Note that the "reach"
278 is calculated from the address *after* that insn, but the offset in the
279 insn is calculated from the beginning of the insn. We also need to
280 take into account the implicit 1 coded as the "A" in PTA when counting
281 forward. If PTB reaches an odd address, we trap that as an error
282 elsewhere, so we don't have to have different relaxation entries. We
283 don't add a one to the negative range, since PTB would then have the
284 farthest backward-reaching value skipped, not generated at relaxation. */
285 #define SH64PCREL16_F (32767 * 4 - 4 + 1)
286 #define SH64PCREL16_M (-32768 * 4 - 4)
287 #define SH64PCREL16_LENGTH 0
289 /* The next step is to change that PT insn into
290 MOVI ((label - datalabel Ln) >> 16) & 65535, R25
291 SHORI (label - datalabel Ln) & 65535, R25
294 which means two extra insns, 8 extra bytes. This is the limit for the
297 The expressions look a bit bad since we have to adjust this to avoid overflow on a
299 #define SH64PCREL32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
300 #define SH64PCREL32_LENGTH (2 * 4)
302 /* Similarly, we just change the MOVI and add a SHORI for the 48-bit
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 SH64PCREL32_M (((long) -1 << 30) * 2 - 4)
308 #define SH64PCREL48_F ((((long) 1 << 47) - 1) - 4)
309 #define SH64PCREL48_M (((long) -1 << 47) - 4)
310 #define SH64PCREL48_LENGTH (3 * 4)
312 /* If the host does not have 64-bit longs, just make this state identical
313 in reach to the 32-bit state. Note that we have a slightly incorrect
314 reach, but the correct one above will overflow a 32-bit number. */
315 #define SH64PCREL32_M (((long) -1 << 30) * 2)
316 #define SH64PCREL48_F SH64PCREL32_F
317 #define SH64PCREL48_M SH64PCREL32_M
318 #define SH64PCREL48_LENGTH (3 * 4)
319 #endif /* BFD_HOST_64BIT_LONG */
321 /* And similarly for the 64-bit expansion; a MOVI + SHORI + SHORI + SHORI
323 #define SH64PCREL64_LENGTH (4 * 4)
325 /* For MOVI, we make the MOVI + SHORI... expansion you can see in the
326 SH64PCREL expansions. The PCREL one is similar, but the other has no
327 pc-relative reach; it must be fully expanded in
328 shmedia_md_estimate_size_before_relax. */
329 #define MOVI_16_LENGTH 0
330 #define MOVI_16_F (32767 - 4)
331 #define MOVI_16_M (-32768 - 4)
332 #define MOVI_32_LENGTH 4
333 #define MOVI_32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
334 #define MOVI_48_LENGTH 8
336 #if BFD_HOST_64BIT_LONG
337 /* The "reach" type is long, so we can only do this for a 64-bit-long
339 #define MOVI_32_M (((long) -1 << 30) * 2 - 4)
340 #define MOVI_48_F ((((long) 1 << 47) - 1) - 4)
341 #define MOVI_48_M (((long) -1 << 47) - 4)
343 /* If the host does not have 64-bit longs, just make this state identical
344 in reach to the 32-bit state. Note that we have a slightly incorrect
345 reach, but the correct one above will overflow a 32-bit number. */
346 #define MOVI_32_M (((long) -1 << 30) * 2)
347 #define MOVI_48_F MOVI_32_F
348 #define MOVI_48_M MOVI_32_M
349 #endif /* BFD_HOST_64BIT_LONG */
351 #define MOVI_64_LENGTH 12
352 #endif /* HAVE_SH64 */
354 #define EMPTY { 0, 0, 0, 0 }
356 const relax_typeS md_relax_table[C (END, 0)] = {
357 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
358 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
361 /* C (COND_JUMP, COND8) */
362 { COND8_F, COND8_M, COND8_LENGTH, C (COND_JUMP, COND12) },
363 /* C (COND_JUMP, COND12) */
364 { COND12_F, COND12_M, COND12_LENGTH, C (COND_JUMP, COND32), },
365 /* C (COND_JUMP, COND32) */
366 { COND32_F, COND32_M, COND32_LENGTH, 0, },
367 /* C (COND_JUMP, UNDEF_WORD_DISP) */
368 { 0, 0, COND32_LENGTH, 0, },
370 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
373 /* C (COND_JUMP_DELAY, COND8) */
374 { COND8_F, COND8_M, COND8_LENGTH, C (COND_JUMP_DELAY, COND12) },
375 /* C (COND_JUMP_DELAY, COND12) */
376 { COND12_F, COND12_M, COND12_DELAY_LENGTH, C (COND_JUMP_DELAY, COND32), },
377 /* C (COND_JUMP_DELAY, COND32) */
378 { COND32_F, COND32_M, COND32_LENGTH, 0, },
379 /* C (COND_JUMP_DELAY, UNDEF_WORD_DISP) */
380 { 0, 0, COND32_LENGTH, 0, },
382 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
385 /* C (UNCOND_JUMP, UNCOND12) */
386 { UNCOND12_F, UNCOND12_M, UNCOND12_LENGTH, C (UNCOND_JUMP, UNCOND32), },
387 /* C (UNCOND_JUMP, UNCOND32) */
388 { UNCOND32_F, UNCOND32_M, UNCOND32_LENGTH, 0, },
390 /* C (UNCOND_JUMP, UNDEF_WORD_DISP) */
391 { 0, 0, UNCOND32_LENGTH, 0, },
393 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
396 /* C (SH64PCREL16_32, SH64PCREL16) */
398 { SH64PCREL16_F, SH64PCREL16_M, SH64PCREL16_LENGTH, C (SH64PCREL16_32, SH64PCREL32) },
399 /* C (SH64PCREL16_32, SH64PCREL32) */
400 { 0, 0, SH64PCREL32_LENGTH, 0 },
402 /* C (SH64PCREL16_32, SH64PCRELPLT) */
403 { 0, 0, SH64PCREL32_LENGTH, 0 },
405 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
407 /* C (SH64PCREL16_64, SH64PCREL16) */
409 { SH64PCREL16_F, SH64PCREL16_M, SH64PCREL16_LENGTH, C (SH64PCREL16_64, SH64PCREL32) },
410 /* C (SH64PCREL16_64, SH64PCREL32) */
411 { SH64PCREL32_F, SH64PCREL32_M, SH64PCREL32_LENGTH, C (SH64PCREL16_64, SH64PCREL48) },
412 /* C (SH64PCREL16_64, SH64PCREL48) */
413 { SH64PCREL48_F, SH64PCREL48_M, SH64PCREL48_LENGTH, C (SH64PCREL16_64, SH64PCREL64) },
414 /* C (SH64PCREL16_64, SH64PCREL64) */
415 { 0, 0, SH64PCREL64_LENGTH, 0 },
416 /* C (SH64PCREL16_64, SH64PCRELPLT) */
417 { 0, 0, SH64PCREL64_LENGTH, 0 },
419 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
421 /* C (SH64PCREL16PT_32, SH64PCREL16) */
423 { SH64PCREL16_F, SH64PCREL16_M, SH64PCREL16_LENGTH, C (SH64PCREL16PT_32, SH64PCREL32) },
424 /* C (SH64PCREL16PT_32, SH64PCREL32) */
425 { 0, 0, SH64PCREL32_LENGTH, 0 },
427 /* C (SH64PCREL16PT_32, SH64PCRELPLT) */
428 { 0, 0, SH64PCREL32_LENGTH, 0 },
430 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
432 /* C (SH64PCREL16PT_64, SH64PCREL16) */
434 { SH64PCREL16_F, SH64PCREL16_M, SH64PCREL16_LENGTH, C (SH64PCREL16PT_64, SH64PCREL32) },
435 /* C (SH64PCREL16PT_64, SH64PCREL32) */
439 C (SH64PCREL16PT_64, SH64PCREL48) },
440 /* C (SH64PCREL16PT_64, SH64PCREL48) */
441 { SH64PCREL48_F, SH64PCREL48_M, SH64PCREL48_LENGTH, C (SH64PCREL16PT_64, SH64PCREL64) },
442 /* C (SH64PCREL16PT_64, SH64PCREL64) */
443 { 0, 0, SH64PCREL64_LENGTH, 0 },
444 /* C (SH64PCREL16PT_64, SH64PCRELPLT) */
445 { 0, 0, SH64PCREL64_LENGTH, 0},
447 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
449 /* C (MOVI_IMM_32, UNDEF_MOVI) */
450 { 0, 0, MOVI_32_LENGTH, 0 },
451 /* C (MOVI_IMM_32, MOVI_16) */
452 { MOVI_16_F, MOVI_16_M, MOVI_16_LENGTH, C (MOVI_IMM_32, MOVI_32) },
453 /* C (MOVI_IMM_32, MOVI_32) */
454 { MOVI_32_F, MOVI_32_M, MOVI_32_LENGTH, 0 },
456 /* C (MOVI_IMM_32, MOVI_GOTOFF) */
457 { 0, 0, MOVI_32_LENGTH, 0 },
458 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
460 /* C (MOVI_IMM_32_PCREL, MOVI_16) */
462 { MOVI_16_F, MOVI_16_M, MOVI_16_LENGTH, C (MOVI_IMM_32_PCREL, MOVI_32) },
463 /* C (MOVI_IMM_32_PCREL, MOVI_32) */
464 { 0, 0, MOVI_32_LENGTH, 0 },
466 /* C (MOVI_IMM_32_PCREL, MOVI_PLT) */
467 { 0, 0, MOVI_32_LENGTH, 0 },
469 /* C (MOVI_IMM_32_PCREL, MOVI_GOTPC) */
470 { 0, 0, MOVI_32_LENGTH, 0 },
471 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
473 /* C (MOVI_IMM_64, UNDEF_MOVI) */
474 { 0, 0, MOVI_64_LENGTH, 0 },
475 /* C (MOVI_IMM_64, MOVI_16) */
476 { MOVI_16_F, MOVI_16_M, MOVI_16_LENGTH, C (MOVI_IMM_64, MOVI_32) },
477 /* C (MOVI_IMM_64, MOVI_32) */
478 { MOVI_32_F, MOVI_32_M, MOVI_32_LENGTH, C (MOVI_IMM_64, MOVI_48) },
479 /* C (MOVI_IMM_64, MOVI_48) */
480 { MOVI_48_F, MOVI_48_M, MOVI_48_LENGTH, C (MOVI_IMM_64, MOVI_64) },
481 /* C (MOVI_IMM_64, MOVI_64) */
482 { 0, 0, MOVI_64_LENGTH, 0 },
484 /* C (MOVI_IMM_64, MOVI_GOTOFF) */
485 { 0, 0, MOVI_64_LENGTH, 0 },
486 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
488 /* C (MOVI_IMM_64_PCREL, MOVI_16) */
490 { MOVI_16_F, MOVI_16_M, MOVI_16_LENGTH, C (MOVI_IMM_64_PCREL, MOVI_32) },
491 /* C (MOVI_IMM_64_PCREL, MOVI_32) */
492 { MOVI_32_F, MOVI_32_M, MOVI_32_LENGTH, C (MOVI_IMM_64_PCREL, MOVI_48) },
493 /* C (MOVI_IMM_64_PCREL, MOVI_48) */
494 { MOVI_48_F, MOVI_48_M, MOVI_48_LENGTH, C (MOVI_IMM_64_PCREL, MOVI_64) },
495 /* C (MOVI_IMM_64_PCREL, MOVI_64) */
496 { 0, 0, MOVI_64_LENGTH, 0 },
497 /* C (MOVI_IMM_64_PCREL, MOVI_PLT) */
498 { 0, 0, MOVI_64_LENGTH, 0 },
500 /* C (MOVI_IMM_64_PCREL, MOVI_GOTPC) */
501 { 0, 0, MOVI_64_LENGTH, 0 },
502 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY,
504 #endif /* HAVE_SH64 */
510 static struct hash_control *opcode_hash_control; /* Opcode mnemonics */
514 /* Determinet whether the symbol needs any kind of PIC relocation. */
517 sh_PIC_related_p (sym)
525 if (sym == GOT_symbol)
529 if (sh_PIC_related_p (*symbol_get_tc (sym)))
533 exp = symbol_get_value_expression (sym);
535 return (exp->X_op == O_PIC_reloc
536 || sh_PIC_related_p (exp->X_add_symbol)
537 || sh_PIC_related_p (exp->X_op_symbol));
540 /* Determine the relocation type to be used to represent the
541 expression, that may be rearranged. */
544 sh_check_fixup (main_exp, r_type_p)
545 expressionS *main_exp;
546 bfd_reloc_code_real_type *r_type_p;
548 expressionS *exp = main_exp;
550 /* This is here for backward-compatibility only. GCC used to generated:
552 f@PLT + . - (.LPCS# + 2)
554 but we'd rather be able to handle this as a PIC-related reference
555 plus/minus a symbol. However, gas' parser gives us:
557 O_subtract (O_add (f@PLT, .), .LPCS#+2)
559 so we attempt to transform this into:
561 O_subtract (f@PLT, O_subtract (.LPCS#+2, .))
563 which we can handle simply below. */
564 if (exp->X_op == O_subtract)
566 if (sh_PIC_related_p (exp->X_op_symbol))
569 exp = symbol_get_value_expression (exp->X_add_symbol);
571 if (exp && sh_PIC_related_p (exp->X_op_symbol))
574 if (exp && exp->X_op == O_add
575 && sh_PIC_related_p (exp->X_add_symbol))
577 symbolS *sym = exp->X_add_symbol;
579 exp->X_op = O_subtract;
580 exp->X_add_symbol = main_exp->X_op_symbol;
582 main_exp->X_op_symbol = main_exp->X_add_symbol;
583 main_exp->X_add_symbol = sym;
585 main_exp->X_add_number += exp->X_add_number;
586 exp->X_add_number = 0;
591 else if (exp->X_op == O_add && sh_PIC_related_p (exp->X_op_symbol))
594 if (exp->X_op == O_symbol || exp->X_op == O_add || exp->X_op == O_subtract)
597 if (exp->X_add_symbol
598 && (exp->X_add_symbol == GOT_symbol
600 && *symbol_get_tc (exp->X_add_symbol) == GOT_symbol)))
604 case BFD_RELOC_SH_IMM_LOW16:
605 *r_type_p = BFD_RELOC_SH_GOTPC_LOW16;
608 case BFD_RELOC_SH_IMM_MEDLOW16:
609 *r_type_p = BFD_RELOC_SH_GOTPC_MEDLOW16;
612 case BFD_RELOC_SH_IMM_MEDHI16:
613 *r_type_p = BFD_RELOC_SH_GOTPC_MEDHI16;
616 case BFD_RELOC_SH_IMM_HI16:
617 *r_type_p = BFD_RELOC_SH_GOTPC_HI16;
621 case BFD_RELOC_UNUSED:
622 *r_type_p = BFD_RELOC_SH_GOTPC;
631 if (exp->X_add_symbol && exp->X_add_symbol == GOT_symbol)
633 *r_type_p = BFD_RELOC_SH_GOTPC;
637 exp = symbol_get_value_expression (exp->X_add_symbol);
642 if (exp->X_op == O_PIC_reloc)
648 case BFD_RELOC_UNUSED:
649 *r_type_p = exp->X_md;
652 case BFD_RELOC_SH_IMM_LOW16:
655 case BFD_RELOC_32_GOTOFF:
656 *r_type_p = BFD_RELOC_SH_GOTOFF_LOW16;
659 case BFD_RELOC_SH_GOTPLT32:
660 *r_type_p = BFD_RELOC_SH_GOTPLT_LOW16;
663 case BFD_RELOC_32_GOT_PCREL:
664 *r_type_p = BFD_RELOC_SH_GOT_LOW16;
667 case BFD_RELOC_32_PLT_PCREL:
668 *r_type_p = BFD_RELOC_SH_PLT_LOW16;
676 case BFD_RELOC_SH_IMM_MEDLOW16:
679 case BFD_RELOC_32_GOTOFF:
680 *r_type_p = BFD_RELOC_SH_GOTOFF_MEDLOW16;
683 case BFD_RELOC_SH_GOTPLT32:
684 *r_type_p = BFD_RELOC_SH_GOTPLT_MEDLOW16;
687 case BFD_RELOC_32_GOT_PCREL:
688 *r_type_p = BFD_RELOC_SH_GOT_MEDLOW16;
691 case BFD_RELOC_32_PLT_PCREL:
692 *r_type_p = BFD_RELOC_SH_PLT_MEDLOW16;
700 case BFD_RELOC_SH_IMM_MEDHI16:
703 case BFD_RELOC_32_GOTOFF:
704 *r_type_p = BFD_RELOC_SH_GOTOFF_MEDHI16;
707 case BFD_RELOC_SH_GOTPLT32:
708 *r_type_p = BFD_RELOC_SH_GOTPLT_MEDHI16;
711 case BFD_RELOC_32_GOT_PCREL:
712 *r_type_p = BFD_RELOC_SH_GOT_MEDHI16;
715 case BFD_RELOC_32_PLT_PCREL:
716 *r_type_p = BFD_RELOC_SH_PLT_MEDHI16;
724 case BFD_RELOC_SH_IMM_HI16:
727 case BFD_RELOC_32_GOTOFF:
728 *r_type_p = BFD_RELOC_SH_GOTOFF_HI16;
731 case BFD_RELOC_SH_GOTPLT32:
732 *r_type_p = BFD_RELOC_SH_GOTPLT_HI16;
735 case BFD_RELOC_32_GOT_PCREL:
736 *r_type_p = BFD_RELOC_SH_GOT_HI16;
739 case BFD_RELOC_32_PLT_PCREL:
740 *r_type_p = BFD_RELOC_SH_PLT_HI16;
752 *r_type_p = exp->X_md;
755 exp->X_op = O_symbol;
758 main_exp->X_add_symbol = exp->X_add_symbol;
759 main_exp->X_add_number += exp->X_add_number;
763 return (sh_PIC_related_p (exp->X_add_symbol)
764 || sh_PIC_related_p (exp->X_op_symbol));
769 /* Add expression EXP of SIZE bytes to offset OFF of fragment FRAG. */
772 sh_cons_fix_new (frag, off, size, exp)
777 bfd_reloc_code_real_type r_type = BFD_RELOC_UNUSED;
779 if (sh_check_fixup (exp, &r_type))
780 as_bad (_("Invalid PIC expression."));
782 if (r_type == BFD_RELOC_UNUSED)
786 r_type = BFD_RELOC_8;
790 r_type = BFD_RELOC_16;
794 r_type = BFD_RELOC_32;
799 r_type = BFD_RELOC_64;
809 as_bad (_("unsupported BFD relocation size %u"), size);
810 r_type = BFD_RELOC_UNUSED;
813 fix_new_exp (frag, off, size, exp, 0, r_type);
816 /* The regular cons() function, that reads constants, doesn't support
817 suffixes such as @GOT, @GOTOFF and @PLT, that generate
818 machine-specific relocation types. So we must define it here. */
819 /* Clobbers input_line_pointer, checks end-of-line. */
822 register int nbytes; /* 1=.byte, 2=.word, 4=.long */
828 /* Update existing range to include a previous insn, if there was one. */
829 sh64_update_contents_mark (TRUE);
831 /* We need to make sure the contents type is set to data. */
834 #endif /* HAVE_SH64 */
836 if (is_it_end_of_statement ())
838 demand_empty_rest_of_line ();
845 emit_expr (&exp, (unsigned int) nbytes);
847 while (*input_line_pointer++ == ',');
849 input_line_pointer--; /* Put terminator back into stream. */
850 if (*input_line_pointer == '#' || *input_line_pointer == '!')
852 while (! is_end_of_line[(unsigned char) *input_line_pointer++]);
855 demand_empty_rest_of_line ();
860 /* This function is called once, at assembler startup time. This should
861 set up all the tables, etc that the MD part of the assembler needs. */
866 const sh_opcode_info *opcode;
867 char *prev_name = "";
870 target_arch = arch_sh1_up & ~(sh_dsp ? arch_sh3e_up : arch_sh_dsp_up);
871 valid_arch = target_arch;
877 opcode_hash_control = hash_new ();
879 /* Insert unique names into hash table. */
880 for (opcode = sh_table; opcode->name; opcode++)
882 if (strcmp (prev_name, opcode->name) != 0)
884 if (! (opcode->arch & target_arch))
886 prev_name = opcode->name;
887 hash_insert (opcode_hash_control, opcode->name, (char *) opcode);
894 static int reg_x, reg_y;
898 #define IDENT_CHAR(c) (ISALNUM (c) || (c) == '_')
900 /* Try to parse a reg name. Return the number of chars consumed. */
903 parse_reg (src, mode, reg)
908 char l0 = TOLOWER (src[0]);
909 char l1 = l0 ? TOLOWER (src[1]) : 0;
911 /* We use ! IDENT_CHAR for the next character after the register name, to
912 make sure that we won't accidentally recognize a symbol name such as
913 'sram' or sr_ram as being a reference to the register 'sr'. */
919 if (src[2] >= '0' && src[2] <= '5'
920 && ! IDENT_CHAR ((unsigned char) src[3]))
923 *reg = 10 + src[2] - '0';
927 if (l1 >= '0' && l1 <= '9'
928 && ! IDENT_CHAR ((unsigned char) src[2]))
934 if (l1 >= '0' && l1 <= '7' && strncasecmp (&src[2], "_bank", 5) == 0
935 && ! IDENT_CHAR ((unsigned char) src[7]))
942 if (l1 == 'e' && ! IDENT_CHAR ((unsigned char) src[2]))
947 if (l1 == 's' && ! IDENT_CHAR ((unsigned char) src[2]))
958 if (! IDENT_CHAR ((unsigned char) src[2]))
964 if (TOLOWER (src[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src[3]))
973 if (! IDENT_CHAR ((unsigned char) src[2]))
979 if (TOLOWER (src[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src[3]))
987 if (l1 == 'x' && src[2] >= '0' && src[2] <= '1'
988 && ! IDENT_CHAR ((unsigned char) src[3]))
991 *reg = 4 + (l1 - '0');
994 if (l1 == 'y' && src[2] >= '0' && src[2] <= '1'
995 && ! IDENT_CHAR ((unsigned char) src[3]))
998 *reg = 6 + (l1 - '0');
1001 if (l1 == 's' && src[2] >= '0' && src[2] <= '3'
1002 && ! IDENT_CHAR ((unsigned char) src[3]))
1007 *reg = n | ((~n & 2) << 1);
1012 if (l0 == 'i' && l1 && ! IDENT_CHAR ((unsigned char) src[2]))
1034 if (l0 == 'x' && l1 >= '0' && l1 <= '1'
1035 && ! IDENT_CHAR ((unsigned char) src[2]))
1038 *reg = A_X0_NUM + l1 - '0';
1042 if (l0 == 'y' && l1 >= '0' && l1 <= '1'
1043 && ! IDENT_CHAR ((unsigned char) src[2]))
1046 *reg = A_Y0_NUM + l1 - '0';
1050 if (l0 == 'm' && l1 >= '0' && l1 <= '1'
1051 && ! IDENT_CHAR ((unsigned char) src[2]))
1054 *reg = l1 == '0' ? A_M0_NUM : A_M1_NUM;
1060 && TOLOWER (src[2]) == 'r' && ! IDENT_CHAR ((unsigned char) src[3]))
1066 if (l0 == 's' && l1 == 'p' && TOLOWER (src[2]) == 'c'
1067 && ! IDENT_CHAR ((unsigned char) src[3]))
1073 if (l0 == 's' && l1 == 'g' && TOLOWER (src[2]) == 'r'
1074 && ! IDENT_CHAR ((unsigned char) src[3]))
1080 if (l0 == 'd' && l1 == 's' && TOLOWER (src[2]) == 'r'
1081 && ! IDENT_CHAR ((unsigned char) src[3]))
1087 if (l0 == 'd' && l1 == 'b' && TOLOWER (src[2]) == 'r'
1088 && ! IDENT_CHAR ((unsigned char) src[3]))
1094 if (l0 == 's' && l1 == 'r' && ! IDENT_CHAR ((unsigned char) src[2]))
1100 if (l0 == 's' && l1 == 'p' && ! IDENT_CHAR ((unsigned char) src[2]))
1107 if (l0 == 'p' && l1 == 'r' && ! IDENT_CHAR ((unsigned char) src[2]))
1112 if (l0 == 'p' && l1 == 'c' && ! IDENT_CHAR ((unsigned char) src[2]))
1114 /* Don't use A_DISP_PC here - that would accept stuff like 'mova pc,r0'
1115 and use an uninitialized immediate. */
1119 if (l0 == 'g' && l1 == 'b' && TOLOWER (src[2]) == 'r'
1120 && ! IDENT_CHAR ((unsigned char) src[3]))
1125 if (l0 == 'v' && l1 == 'b' && TOLOWER (src[2]) == 'r'
1126 && ! IDENT_CHAR ((unsigned char) src[3]))
1132 if (l0 == 'm' && l1 == 'a' && TOLOWER (src[2]) == 'c'
1133 && ! IDENT_CHAR ((unsigned char) src[4]))
1135 if (TOLOWER (src[3]) == 'l')
1140 if (TOLOWER (src[3]) == 'h')
1146 if (l0 == 'm' && l1 == 'o' && TOLOWER (src[2]) == 'd'
1147 && ! IDENT_CHAR ((unsigned char) src[3]))
1152 if (l0 == 'f' && l1 == 'r')
1156 if (src[3] >= '0' && src[3] <= '5'
1157 && ! IDENT_CHAR ((unsigned char) src[4]))
1160 *reg = 10 + src[3] - '0';
1164 if (src[2] >= '0' && src[2] <= '9'
1165 && ! IDENT_CHAR ((unsigned char) src[3]))
1168 *reg = (src[2] - '0');
1172 if (l0 == 'd' && l1 == 'r')
1176 if (src[3] >= '0' && src[3] <= '4' && ! ((src[3] - '0') & 1)
1177 && ! IDENT_CHAR ((unsigned char) src[4]))
1180 *reg = 10 + src[3] - '0';
1184 if (src[2] >= '0' && src[2] <= '8' && ! ((src[2] - '0') & 1)
1185 && ! IDENT_CHAR ((unsigned char) src[3]))
1188 *reg = (src[2] - '0');
1192 if (l0 == 'x' && l1 == 'd')
1196 if (src[3] >= '0' && src[3] <= '4' && ! ((src[3] - '0') & 1)
1197 && ! IDENT_CHAR ((unsigned char) src[4]))
1200 *reg = 11 + src[3] - '0';
1204 if (src[2] >= '0' && src[2] <= '8' && ! ((src[2] - '0') & 1)
1205 && ! IDENT_CHAR ((unsigned char) src[3]))
1208 *reg = (src[2] - '0') + 1;
1212 if (l0 == 'f' && l1 == 'v')
1214 if (src[2] == '1'&& src[3] == '2' && ! IDENT_CHAR ((unsigned char) src[4]))
1220 if ((src[2] == '0' || src[2] == '4' || src[2] == '8')
1221 && ! IDENT_CHAR ((unsigned char) src[3]))
1224 *reg = (src[2] - '0');
1228 if (l0 == 'f' && l1 == 'p' && TOLOWER (src[2]) == 'u'
1229 && TOLOWER (src[3]) == 'l'
1230 && ! IDENT_CHAR ((unsigned char) src[4]))
1236 if (l0 == 'f' && l1 == 'p' && TOLOWER (src[2]) == 's'
1237 && TOLOWER (src[3]) == 'c'
1238 && TOLOWER (src[4]) == 'r' && ! IDENT_CHAR ((unsigned char) src[5]))
1244 if (l0 == 'x' && l1 == 'm' && TOLOWER (src[2]) == 't'
1245 && TOLOWER (src[3]) == 'r'
1246 && TOLOWER (src[4]) == 'x' && ! IDENT_CHAR ((unsigned char) src[5]))
1258 sh_operand_info *op;
1263 save = input_line_pointer;
1264 input_line_pointer = s;
1265 expression (&op->immediate);
1266 if (op->immediate.X_op == O_absent)
1267 as_bad (_("missing operand"));
1269 else if (op->immediate.X_op == O_PIC_reloc
1270 || sh_PIC_related_p (op->immediate.X_add_symbol)
1271 || sh_PIC_related_p (op->immediate.X_op_symbol))
1272 as_bad (_("misplaced PIC operand"));
1274 new = input_line_pointer;
1275 input_line_pointer = save;
1279 /* The many forms of operand:
1282 @Rn Register indirect
1295 pr, gbr, vbr, macl, mach
1301 sh_operand_info *op;
1308 /* Must be predecrement. */
1311 len = parse_reg (src, &mode, &(op->reg));
1312 if (mode != A_REG_N)
1313 as_bad (_("illegal register after @-"));
1318 else if (src[0] == '(')
1320 /* Could be @(disp, rn), @(disp, gbr), @(disp, pc), @(r0, gbr) or
1323 len = parse_reg (src, &mode, &(op->reg));
1324 if (len && mode == A_REG_N)
1329 as_bad (_("must be @(r0,...)"));
1334 /* Now can be rn or gbr. */
1335 len = parse_reg (src, &mode, &(op->reg));
1345 op->type = A_R0_GBR;
1347 else if (mode == A_REG_N)
1349 op->type = A_IND_R0_REG_N;
1353 as_bad (_("syntax error in @(r0,...)"));
1358 as_bad (_("syntax error in @(r0...)"));
1363 /* Must be an @(disp,.. thing). */
1364 src = parse_exp (src, op);
1367 /* Now can be rn, gbr or pc. */
1368 len = parse_reg (src, &mode, &op->reg);
1371 if (mode == A_REG_N)
1373 op->type = A_DISP_REG_N;
1375 else if (mode == A_GBR)
1377 op->type = A_DISP_GBR;
1379 else if (mode == A_PC)
1381 /* We want @(expr, pc) to uniformly address . + expr,
1382 no matter if expr is a constant, or a more complex
1383 expression, e.g. sym-. or sym1-sym2.
1384 However, we also used to accept @(sym,pc)
1385 as adressing sym, i.e. meaning the same as plain sym.
1386 Some existing code does use the @(sym,pc) syntax, so
1387 we give it the old semantics for now, but warn about
1388 its use, so that users have some time to fix their code.
1390 Note that due to this backward compatibility hack,
1391 we'll get unexpected results when @(offset, pc) is used,
1392 and offset is a symbol that is set later to an an address
1393 difference, or an external symbol that is set to an
1394 address difference in another source file, so we want to
1395 eventually remove it. */
1396 if (op->immediate.X_op == O_symbol)
1398 op->type = A_DISP_PC;
1399 as_warn (_("Deprecated syntax."));
1403 op->type = A_DISP_PC_ABS;
1404 /* Such operands don't get corrected for PC==.+4, so
1405 make the correction here. */
1406 op->immediate.X_add_number -= 4;
1411 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1416 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1421 as_bad (_("expecting )"));
1427 src += parse_reg (src, &mode, &(op->reg));
1428 if (mode != A_REG_N)
1429 as_bad (_("illegal register after @"));
1436 l0 = TOLOWER (src[0]);
1437 l1 = TOLOWER (src[1]);
1439 if ((l0 == 'r' && l1 == '8')
1440 || (l0 == 'i' && (l1 == 'x' || l1 == 's')))
1443 op->type = A_PMOD_N;
1445 else if ( (l0 == 'r' && l1 == '9')
1446 || (l0 == 'i' && l1 == 'y'))
1449 op->type = A_PMODY_N;
1461 get_operand (ptr, op)
1463 sh_operand_info *op;
1472 *ptr = parse_exp (src, op);
1477 else if (src[0] == '@')
1479 *ptr = parse_at (src, op);
1482 len = parse_reg (src, &mode, &(op->reg));
1491 /* Not a reg, the only thing left is a displacement. */
1492 *ptr = parse_exp (src, op);
1493 op->type = A_DISP_PC;
1499 get_operands (info, args, operand)
1500 sh_opcode_info *info;
1502 sh_operand_info *operand;
1507 /* The pre-processor will eliminate whitespace in front of '@'
1508 after the first argument; we may be called multiple times
1509 from assemble_ppi, so don't insist on finding whitespace here. */
1513 get_operand (&ptr, operand + 0);
1520 get_operand (&ptr, operand + 1);
1521 /* ??? Hack: psha/pshl have a varying operand number depending on
1522 the type of the first operand. We handle this by having the
1523 three-operand version first and reducing the number of operands
1524 parsed to two if we see that the first operand is an immediate.
1525 This works because no insn with three operands has an immediate
1526 as first operand. */
1527 if (info->arg[2] && operand[0].type != A_IMM)
1533 get_operand (&ptr, operand + 2);
1537 operand[2].type = 0;
1542 operand[1].type = 0;
1543 operand[2].type = 0;
1548 operand[0].type = 0;
1549 operand[1].type = 0;
1550 operand[2].type = 0;
1555 /* Passed a pointer to a list of opcodes which use different
1556 addressing modes, return the opcode which matches the opcodes
1559 static sh_opcode_info *
1560 get_specific (opcode, operands)
1561 sh_opcode_info *opcode;
1562 sh_operand_info *operands;
1564 sh_opcode_info *this_try = opcode;
1565 char *name = opcode->name;
1568 while (opcode->name)
1570 this_try = opcode++;
1571 if ((this_try->name != name) && (strcmp (this_try->name, name) != 0))
1573 /* We've looked so far down the table that we've run out of
1574 opcodes with the same name. */
1578 /* Look at both operands needed by the opcodes and provided by
1579 the user - since an arg test will often fail on the same arg
1580 again and again, we'll try and test the last failing arg the
1581 first on each opcode try. */
1582 for (n = 0; this_try->arg[n]; n++)
1584 sh_operand_info *user = operands + n;
1585 sh_arg_type arg = this_try->arg[n];
1590 if (user->type == A_DISP_PC_ABS)
1600 if (user->type != arg)
1604 /* opcode needs r0 */
1605 if (user->type != A_REG_N || user->reg != 0)
1609 if (user->type != A_R0_GBR || user->reg != 0)
1613 if (user->type != F_REG_N || user->reg != 0)
1621 case A_IND_R0_REG_N:
1632 /* Opcode needs rn */
1633 if (user->type != arg)
1638 if (user->type != D_REG_N && user->type != X_REG_N)
1653 if (user->type != arg)
1658 if (user->type != arg)
1667 case A_IND_R0_REG_M:
1670 /* Opcode needs rn */
1671 if (user->type != arg - A_REG_M + A_REG_N)
1677 if (user->type != DSP_REG_N)
1699 if (user->type != DSP_REG_N)
1721 if (user->type != DSP_REG_N)
1743 if (user->type != DSP_REG_N)
1765 if (user->type != DSP_REG_N)
1787 if (user->type != DSP_REG_N || user->reg != A_A0_NUM)
1791 if (user->type != DSP_REG_N || user->reg != A_X0_NUM)
1795 if (user->type != DSP_REG_N || user->reg != A_X1_NUM)
1799 if (user->type != DSP_REG_N || user->reg != A_Y0_NUM)
1803 if (user->type != DSP_REG_N || user->reg != A_Y1_NUM)
1813 /* Opcode needs rn */
1814 if (user->type != arg - F_REG_M + F_REG_N)
1819 if (user->type != D_REG_N && user->type != X_REG_N)
1824 if (user->type != XMTRX_M4)
1830 printf (_("unhandled %d\n"), arg);
1834 if ( !(valid_arch & this_try->arch))
1836 valid_arch &= this_try->arch;
1846 insert (where, how, pcrel, op)
1850 sh_operand_info *op;
1852 fix_new_exp (frag_now,
1853 where - frag_now->fr_literal,
1861 build_relax (opcode, op)
1862 sh_opcode_info *opcode;
1863 sh_operand_info *op;
1865 int high_byte = target_big_endian ? 0 : 1;
1868 if (opcode->arg[0] == A_BDISP8)
1870 int what = (opcode->nibbles[1] & 4) ? COND_JUMP_DELAY : COND_JUMP;
1871 p = frag_var (rs_machine_dependent,
1872 md_relax_table[C (what, COND32)].rlx_length,
1873 md_relax_table[C (what, COND8)].rlx_length,
1875 op->immediate.X_add_symbol,
1876 op->immediate.X_add_number,
1878 p[high_byte] = (opcode->nibbles[0] << 4) | (opcode->nibbles[1]);
1880 else if (opcode->arg[0] == A_BDISP12)
1882 p = frag_var (rs_machine_dependent,
1883 md_relax_table[C (UNCOND_JUMP, UNCOND32)].rlx_length,
1884 md_relax_table[C (UNCOND_JUMP, UNCOND12)].rlx_length,
1886 op->immediate.X_add_symbol,
1887 op->immediate.X_add_number,
1889 p[high_byte] = (opcode->nibbles[0] << 4);
1894 /* Insert ldrs & ldre with fancy relocations that relaxation can recognize. */
1897 insert_loop_bounds (output, operand)
1899 sh_operand_info *operand;
1904 /* Since the low byte of the opcode will be overwritten by the reloc, we
1905 can just stash the high byte into both bytes and ignore endianness. */
1908 insert (output, BFD_RELOC_SH_LOOP_START, 1, operand);
1909 insert (output, BFD_RELOC_SH_LOOP_END, 1, operand + 1);
1913 static int count = 0;
1915 /* If the last loop insn is a two-byte-insn, it is in danger of being
1916 swapped with the insn after it. To prevent this, create a new
1917 symbol - complete with SH_LABEL reloc - after the last loop insn.
1918 If the last loop insn is four bytes long, the symbol will be
1919 right in the middle, but four byte insns are not swapped anyways. */
1920 /* A REPEAT takes 6 bytes. The SH has a 32 bit address space.
1921 Hence a 9 digit number should be enough to count all REPEATs. */
1923 sprintf (name, "_R%x", count++ & 0x3fffffff);
1924 end_sym = symbol_new (name, undefined_section, 0, &zero_address_frag);
1925 /* Make this a local symbol. */
1927 SF_SET_LOCAL (end_sym);
1928 #endif /* OBJ_COFF */
1929 symbol_table_insert (end_sym);
1930 end_sym->sy_value = operand[1].immediate;
1931 end_sym->sy_value.X_add_number += 2;
1932 fix_new (frag_now, frag_now_fix (), 2, end_sym, 0, 1, BFD_RELOC_SH_LABEL);
1935 output = frag_more (2);
1938 insert (output, BFD_RELOC_SH_LOOP_START, 1, operand);
1939 insert (output, BFD_RELOC_SH_LOOP_END, 1, operand + 1);
1941 return frag_more (2);
1944 /* Now we know what sort of opcodes it is, let's build the bytes. */
1947 build_Mytes (opcode, operand)
1948 sh_opcode_info *opcode;
1949 sh_operand_info *operand;
1953 char *output = frag_more (2);
1954 unsigned int size = 2;
1955 int low_byte = target_big_endian ? 1 : 0;
1961 for (index = 0; index < 4; index++)
1963 sh_nibble_type i = opcode->nibbles[index];
1973 nbuf[index] = reg_n;
1976 nbuf[index] = reg_m;
1979 if (reg_n < 2 || reg_n > 5)
1980 as_bad (_("Invalid register: 'r%d'"), reg_n);
1981 nbuf[index] = (reg_n & 3) | 4;
1984 nbuf[index] = reg_n | (reg_m >> 2);
1987 nbuf[index] = reg_b | 0x08;
1990 insert (output + low_byte, BFD_RELOC_SH_IMM4BY4, 0, operand);
1993 insert (output + low_byte, BFD_RELOC_SH_IMM4BY2, 0, operand);
1996 insert (output + low_byte, BFD_RELOC_SH_IMM4, 0, operand);
1999 insert (output + low_byte, BFD_RELOC_SH_IMM4BY4, 0, operand + 1);
2002 insert (output + low_byte, BFD_RELOC_SH_IMM4BY2, 0, operand + 1);
2005 insert (output + low_byte, BFD_RELOC_SH_IMM4, 0, operand + 1);
2008 insert (output + low_byte, BFD_RELOC_SH_IMM8BY4, 0, operand);
2011 insert (output + low_byte, BFD_RELOC_SH_IMM8BY2, 0, operand);
2014 insert (output + low_byte, BFD_RELOC_SH_IMM8, 0, operand);
2017 insert (output + low_byte, BFD_RELOC_SH_IMM8BY4, 0, operand + 1);
2020 insert (output + low_byte, BFD_RELOC_SH_IMM8BY2, 0, operand + 1);
2023 insert (output + low_byte, BFD_RELOC_SH_IMM8, 0, operand + 1);
2026 insert (output, BFD_RELOC_SH_PCRELIMM8BY4,
2027 operand->type != A_DISP_PC_ABS, operand);
2030 insert (output, BFD_RELOC_SH_PCRELIMM8BY2,
2031 operand->type != A_DISP_PC_ABS, operand);
2034 output = insert_loop_bounds (output, operand);
2035 nbuf[index] = opcode->nibbles[3];
2039 printf (_("failed for %d\n"), i);
2043 if (!target_big_endian)
2045 output[1] = (nbuf[0] << 4) | (nbuf[1]);
2046 output[0] = (nbuf[2] << 4) | (nbuf[3]);
2050 output[0] = (nbuf[0] << 4) | (nbuf[1]);
2051 output[1] = (nbuf[2] << 4) | (nbuf[3]);
2056 /* Find an opcode at the start of *STR_P in the hash table, and set
2057 *STR_P to the first character after the last one read. */
2059 static sh_opcode_info *
2060 find_cooked_opcode (str_p)
2064 unsigned char *op_start;
2065 unsigned char *op_end;
2069 /* Drop leading whitespace. */
2073 /* Find the op code end.
2074 The pre-processor will eliminate whitespace in front of
2075 any '@' after the first argument; we may be called from
2076 assemble_ppi, so the opcode might be terminated by an '@'. */
2077 for (op_start = op_end = (unsigned char *) (str);
2080 && !is_end_of_line[*op_end] && *op_end != ' ' && *op_end != '@';
2083 unsigned char c = op_start[nlen];
2085 /* The machine independent code will convert CMP/EQ into cmp/EQ
2086 because it thinks the '/' is the end of the symbol. Moreover,
2087 all but the first sub-insn is a parallel processing insn won't
2088 be capitalized. Instead of hacking up the machine independent
2089 code, we just deal with it here. */
2099 as_bad (_("can't find opcode "));
2101 return (sh_opcode_info *) hash_find (opcode_hash_control, name);
2104 /* Assemble a parallel processing insn. */
2105 #define DDT_BASE 0xf000 /* Base value for double data transfer insns */
2108 assemble_ppi (op_end, opcode)
2110 sh_opcode_info *opcode;
2122 sh_operand_info operand[3];
2124 /* Some insn ignore one or more register fields, e.g. psts machl,a0.
2125 Make sure we encode a defined insn pattern. */
2130 if (opcode->arg[0] != A_END)
2131 op_end = get_operands (opcode, op_end, operand);
2132 opcode = get_specific (opcode, operand);
2135 /* Couldn't find an opcode which matched the operands. */
2136 char *where = frag_more (2);
2141 as_bad (_("invalid operands for opcode"));
2145 if (opcode->nibbles[0] != PPI)
2146 as_bad (_("insn can't be combined with parallel processing insn"));
2148 switch (opcode->nibbles[1])
2153 as_bad (_("multiple movx specifications"));
2158 as_bad (_("multiple movy specifications"));
2164 as_bad (_("multiple movx specifications"));
2165 if (reg_n < 4 || reg_n > 5)
2166 as_bad (_("invalid movx address register"));
2167 if (opcode->nibbles[2] & 8)
2169 if (reg_m == A_A1_NUM)
2171 else if (reg_m != A_A0_NUM)
2172 as_bad (_("invalid movx dsp register"));
2177 as_bad (_("invalid movx dsp register"));
2180 movx += ((reg_n - 4) << 9) + (opcode->nibbles[2] << 2) + DDT_BASE;
2185 as_bad (_("multiple movy specifications"));
2186 if (opcode->nibbles[2] & 8)
2188 /* Bit 3 in nibbles[2] is intended for bit 4 of the opcode,
2191 if (reg_m == A_A1_NUM)
2193 else if (reg_m != A_A0_NUM)
2194 as_bad (_("invalid movy dsp register"));
2199 as_bad (_("invalid movy dsp register"));
2202 if (reg_n < 6 || reg_n > 7)
2203 as_bad (_("invalid movy address register"));
2204 movy += ((reg_n - 6) << 8) + opcode->nibbles[2] + DDT_BASE;
2208 if (operand[0].immediate.X_op != O_constant)
2209 as_bad (_("dsp immediate shift value not constant"));
2210 field_b = ((opcode->nibbles[2] << 12)
2211 | (operand[0].immediate.X_add_number & 127) << 4
2216 as_bad (_("multiple parallel processing specifications"));
2217 field_b = ((opcode->nibbles[2] << 12) + (opcode->nibbles[3] << 8)
2218 + (reg_x << 6) + (reg_y << 4) + reg_n);
2222 as_bad (_("multiple condition specifications"));
2223 cond = opcode->nibbles[2] << 8;
2225 goto skip_cond_check;
2229 as_bad (_("multiple parallel processing specifications"));
2230 field_b = ((opcode->nibbles[2] << 12) + (opcode->nibbles[3] << 8)
2231 + cond + (reg_x << 6) + (reg_y << 4) + reg_n);
2237 if ((field_b & 0xef00) != 0xa100)
2238 as_bad (_("insn cannot be combined with pmuls"));
2240 switch (field_b & 0xf)
2243 field_b += 0 - A_X0_NUM;
2246 field_b += 1 - A_Y0_NUM;
2249 field_b += 2 - A_A0_NUM;
2252 field_b += 3 - A_A1_NUM;
2255 as_bad (_("bad padd / psub pmuls output operand"));
2257 /* Generate warning if the destination register for padd / psub
2258 and pmuls is the same ( only for A0 or A1 ).
2259 If the last nibble is 1010 then A0 is used in both
2260 padd / psub and pmuls. If it is 1111 then A1 is used
2261 as destination register in both padd / psub and pmuls. */
2263 if ((((field_b | reg_efg) & 0x000F) == 0x000A)
2264 || (((field_b | reg_efg) & 0x000F) == 0x000F))
2265 as_warn (_("destination register is same for parallel insns"));
2267 field_b += 0x4000 + reg_efg;
2274 as_bad (_("condition not followed by conditionalizable insn"));
2280 opcode = find_cooked_opcode (&op_end);
2284 (_("unrecognized characters at end of parallel processing insn")));
2289 move_code = movx | movy;
2292 /* Parallel processing insn. */
2293 unsigned long ppi_code = (movx | movy | 0xf800) << 16 | field_b;
2295 output = frag_more (4);
2297 if (! target_big_endian)
2299 output[3] = ppi_code >> 8;
2300 output[2] = ppi_code;
2304 output[2] = ppi_code >> 8;
2305 output[3] = ppi_code;
2307 move_code |= 0xf800;
2311 /* Just a double data transfer. */
2312 output = frag_more (2);
2315 if (! target_big_endian)
2317 output[1] = move_code >> 8;
2318 output[0] = move_code;
2322 output[0] = move_code >> 8;
2323 output[1] = move_code;
2328 /* This is the guts of the machine-dependent assembler. STR points to a
2329 machine dependent instruction. This function is supposed to emit
2330 the frags/bytes it assembles to. */
2336 unsigned char *op_end;
2337 sh_operand_info operand[3];
2338 sh_opcode_info *opcode;
2339 unsigned int size = 0;
2342 if (sh64_isa_mode == sh64_isa_shmedia)
2344 shmedia_md_assemble (str);
2349 /* If we've seen pseudo-directives, make sure any emitted data or
2350 frags are marked as data. */
2353 sh64_update_contents_mark (TRUE);
2354 sh64_set_contents_type (CRT_SH5_ISA16);
2359 #endif /* HAVE_SH64 */
2361 opcode = find_cooked_opcode (&str);
2366 as_bad (_("unknown opcode"));
2371 && ! seg_info (now_seg)->tc_segment_info_data.in_code)
2373 /* Output a CODE reloc to tell the linker that the following
2374 bytes are instructions, not data. */
2375 fix_new (frag_now, frag_now_fix (), 2, &abs_symbol, 0, 0,
2377 seg_info (now_seg)->tc_segment_info_data.in_code = 1;
2380 if (opcode->nibbles[0] == PPI)
2382 size = assemble_ppi (op_end, opcode);
2386 if (opcode->arg[0] == A_BDISP12
2387 || opcode->arg[0] == A_BDISP8)
2389 parse_exp (op_end + 1, &operand[0]);
2390 build_relax (opcode, &operand[0]);
2394 if (opcode->arg[0] == A_END)
2396 /* Ignore trailing whitespace. If there is any, it has already
2397 been compressed to a single space. */
2403 op_end = get_operands (opcode, op_end, operand);
2405 opcode = get_specific (opcode, operand);
2409 /* Couldn't find an opcode which matched the operands. */
2410 char *where = frag_more (2);
2415 as_bad (_("invalid operands for opcode"));
2420 as_bad (_("excess operands: '%s'"), op_end);
2422 size = build_Mytes (opcode, operand);
2427 #ifdef BFD_ASSEMBLER
2428 dwarf2_emit_insn (size);
2432 /* This routine is called each time a label definition is seen. It
2433 emits a BFD_RELOC_SH_LABEL reloc if necessary. */
2438 static fragS *last_label_frag;
2439 static int last_label_offset;
2442 && seg_info (now_seg)->tc_segment_info_data.in_code)
2446 offset = frag_now_fix ();
2447 if (frag_now != last_label_frag
2448 || offset != last_label_offset)
2450 fix_new (frag_now, offset, 2, &abs_symbol, 0, 0, BFD_RELOC_SH_LABEL);
2451 last_label_frag = frag_now;
2452 last_label_offset = offset;
2457 /* This routine is called when the assembler is about to output some
2458 data. It emits a BFD_RELOC_SH_DATA reloc if necessary. */
2461 sh_flush_pending_output ()
2464 && seg_info (now_seg)->tc_segment_info_data.in_code)
2466 fix_new (frag_now, frag_now_fix (), 2, &abs_symbol, 0, 0,
2468 seg_info (now_seg)->tc_segment_info_data.in_code = 0;
2473 md_undefined_symbol (name)
2474 char *name ATTRIBUTE_UNUSED;
2480 #ifndef BFD_ASSEMBLER
2483 tc_crawl_symbol_chain (headers)
2484 object_headers *headers ATTRIBUTE_UNUSED;
2486 printf (_("call to tc_crawl_symbol_chain \n"));
2490 tc_headers_hook (headers)
2491 object_headers *headers ATTRIBUTE_UNUSED;
2493 printf (_("call to tc_headers_hook \n"));
2499 /* Various routines to kill one day. */
2500 /* Equal to MAX_PRECISION in atof-ieee.c. */
2501 #define MAX_LITTLENUMS 6
2503 /* Turn a string in input_line_pointer into a floating point constant
2504 of type TYPE, and store the appropriate bytes in *LITP. The number
2505 of LITTLENUMS emitted is stored in *SIZEP . An error message is
2506 returned, or NULL on OK. */
2509 md_atof (type, litP, sizeP)
2515 LITTLENUM_TYPE words[4];
2531 return _("bad call to md_atof");
2534 t = atof_ieee (input_line_pointer, type, words);
2536 input_line_pointer = t;
2540 if (! target_big_endian)
2542 for (i = prec - 1; i >= 0; i--)
2544 md_number_to_chars (litP, (valueT) words[i], 2);
2550 for (i = 0; i < prec; i++)
2552 md_number_to_chars (litP, (valueT) words[i], 2);
2560 /* Handle the .uses pseudo-op. This pseudo-op is used just before a
2561 call instruction. It refers to a label of the instruction which
2562 loads the register which the call uses. We use it to generate a
2563 special reloc for the linker. */
2567 int ignore ATTRIBUTE_UNUSED;
2572 as_warn (_(".uses pseudo-op seen when not relaxing"));
2576 if (ex.X_op != O_symbol || ex.X_add_number != 0)
2578 as_bad (_("bad .uses format"));
2579 ignore_rest_of_line ();
2583 fix_new_exp (frag_now, frag_now_fix (), 2, &ex, 1, BFD_RELOC_SH_USES);
2585 demand_empty_rest_of_line ();
2588 const char *md_shortopts = "";
2589 struct option md_longopts[] =
2591 #define OPTION_RELAX (OPTION_MD_BASE)
2592 #define OPTION_BIG (OPTION_MD_BASE + 1)
2593 #define OPTION_LITTLE (OPTION_BIG + 1)
2594 #define OPTION_SMALL (OPTION_LITTLE + 1)
2595 #define OPTION_DSP (OPTION_SMALL + 1)
2597 {"relax", no_argument, NULL, OPTION_RELAX},
2598 {"big", no_argument, NULL, OPTION_BIG},
2599 {"little", no_argument, NULL, OPTION_LITTLE},
2600 {"small", no_argument, NULL, OPTION_SMALL},
2601 {"dsp", no_argument, NULL, OPTION_DSP},
2603 #define OPTION_ISA (OPTION_DSP + 1)
2604 #define OPTION_ABI (OPTION_ISA + 1)
2605 #define OPTION_NO_MIX (OPTION_ABI + 1)
2606 #define OPTION_SHCOMPACT_CONST_CRANGE (OPTION_NO_MIX + 1)
2607 #define OPTION_NO_EXPAND (OPTION_SHCOMPACT_CONST_CRANGE + 1)
2608 #define OPTION_PT32 (OPTION_NO_EXPAND + 1)
2609 {"isa", required_argument, NULL, OPTION_ISA},
2610 {"abi", required_argument, NULL, OPTION_ABI},
2611 {"no-mix", no_argument, NULL, OPTION_NO_MIX},
2612 {"shcompact-const-crange", no_argument, NULL, OPTION_SHCOMPACT_CONST_CRANGE},
2613 {"no-expand", no_argument, NULL, OPTION_NO_EXPAND},
2614 {"expand-pt32", no_argument, NULL, OPTION_PT32},
2615 #endif /* HAVE_SH64 */
2617 {NULL, no_argument, NULL, 0}
2619 size_t md_longopts_size = sizeof (md_longopts);
2622 md_parse_option (c, arg)
2624 char *arg ATTRIBUTE_UNUSED;
2633 target_big_endian = 1;
2637 target_big_endian = 0;
2650 if (strcasecmp (arg, "shmedia") == 0)
2652 if (sh64_isa_mode == sh64_isa_shcompact)
2653 as_bad (_("Invalid combination: --isa=SHcompact with --isa=SHmedia"));
2654 sh64_isa_mode = sh64_isa_shmedia;
2656 else if (strcasecmp (arg, "shcompact") == 0)
2658 if (sh64_isa_mode == sh64_isa_shmedia)
2659 as_bad (_("Invalid combination: --isa=SHmedia with --isa=SHcompact"));
2660 if (sh64_abi == sh64_abi_64)
2661 as_bad (_("Invalid combination: --abi=64 with --isa=SHcompact"));
2662 sh64_isa_mode = sh64_isa_shcompact;
2665 as_bad ("Invalid argument to --isa option: %s", arg);
2669 if (strcmp (arg, "32") == 0)
2671 if (sh64_abi == sh64_abi_64)
2672 as_bad (_("Invalid combination: --abi=32 with --abi=64"));
2673 sh64_abi = sh64_abi_32;
2675 else if (strcmp (arg, "64") == 0)
2677 if (sh64_abi == sh64_abi_32)
2678 as_bad (_("Invalid combination: --abi=64 with --abi=32"));
2679 if (sh64_isa_mode == sh64_isa_shcompact)
2680 as_bad (_("Invalid combination: --isa=SHcompact with --abi=64"));
2681 sh64_abi = sh64_abi_64;
2684 as_bad ("Invalid argument to --abi option: %s", arg);
2691 case OPTION_SHCOMPACT_CONST_CRANGE:
2692 sh64_shcompact_const_crange = TRUE;
2695 case OPTION_NO_EXPAND:
2696 sh64_expand = FALSE;
2702 #endif /* HAVE_SH64 */
2712 md_show_usage (stream)
2715 fprintf (stream, _("\
2717 -little generate little endian code\n\
2718 -big generate big endian code\n\
2719 -relax alter jump instructions for long displacements\n\
2720 -small align sections to 4 byte boundaries, not 16\n\
2721 -dsp enable sh-dsp insns, and disable sh3e / sh4 insns.\n"));
2723 fprintf (stream, _("\
2724 -isa=[shmedia set default instruction set for SH64\n\
2728 -abi=[32|64] set size of expanded SHmedia operands and object\n\
2730 -shcompact-const-crange emit code-range descriptors for constants in\n\
2731 SHcompact code sections\n\
2732 -no-mix disallow SHmedia code in the same section as\n\
2733 constants and SHcompact code\n\
2734 -no-expand do not expand MOVI, PT, PTA or PTB instructions\n\
2735 -expand-pt32 with -abi=64, expand PT, PTA and PTB instructions\n\
2737 #endif /* HAVE_SH64 */
2740 /* This struct is used to pass arguments to sh_count_relocs through
2741 bfd_map_over_sections. */
2743 struct sh_count_relocs
2745 /* Symbol we are looking for. */
2747 /* Count of relocs found. */
2751 /* Count the number of fixups in a section which refer to a particular
2752 symbol. When using BFD_ASSEMBLER, this is called via
2753 bfd_map_over_sections. */
2756 sh_count_relocs (abfd, sec, data)
2757 bfd *abfd ATTRIBUTE_UNUSED;
2761 struct sh_count_relocs *info = (struct sh_count_relocs *) data;
2762 segment_info_type *seginfo;
2766 seginfo = seg_info (sec);
2767 if (seginfo == NULL)
2771 for (fix = seginfo->fix_root; fix != NULL; fix = fix->fx_next)
2773 if (fix->fx_addsy == sym)
2781 /* Handle the count relocs for a particular section. When using
2782 BFD_ASSEMBLER, this is called via bfd_map_over_sections. */
2785 sh_frob_section (abfd, sec, ignore)
2786 bfd *abfd ATTRIBUTE_UNUSED;
2788 PTR ignore ATTRIBUTE_UNUSED;
2790 segment_info_type *seginfo;
2793 seginfo = seg_info (sec);
2794 if (seginfo == NULL)
2797 for (fix = seginfo->fix_root; fix != NULL; fix = fix->fx_next)
2802 struct sh_count_relocs info;
2804 if (fix->fx_r_type != BFD_RELOC_SH_USES)
2807 /* The BFD_RELOC_SH_USES reloc should refer to a defined local
2808 symbol in the same section. */
2809 sym = fix->fx_addsy;
2811 || fix->fx_subsy != NULL
2812 || fix->fx_addnumber != 0
2813 || S_GET_SEGMENT (sym) != sec
2814 #if ! defined (BFD_ASSEMBLER) && defined (OBJ_COFF)
2815 || S_GET_STORAGE_CLASS (sym) == C_EXT
2817 || S_IS_EXTERNAL (sym))
2819 as_warn_where (fix->fx_file, fix->fx_line,
2820 _(".uses does not refer to a local symbol in the same section"));
2824 /* Look through the fixups again, this time looking for one
2825 at the same location as sym. */
2826 val = S_GET_VALUE (sym);
2827 for (fscan = seginfo->fix_root;
2829 fscan = fscan->fx_next)
2830 if (val == fscan->fx_frag->fr_address + fscan->fx_where
2831 && fscan->fx_r_type != BFD_RELOC_SH_ALIGN
2832 && fscan->fx_r_type != BFD_RELOC_SH_CODE
2833 && fscan->fx_r_type != BFD_RELOC_SH_DATA
2834 && fscan->fx_r_type != BFD_RELOC_SH_LABEL)
2838 as_warn_where (fix->fx_file, fix->fx_line,
2839 _("can't find fixup pointed to by .uses"));
2843 if (fscan->fx_tcbit)
2845 /* We've already done this one. */
2849 /* The variable fscan should also be a fixup to a local symbol
2850 in the same section. */
2851 sym = fscan->fx_addsy;
2853 || fscan->fx_subsy != NULL
2854 || fscan->fx_addnumber != 0
2855 || S_GET_SEGMENT (sym) != sec
2856 #if ! defined (BFD_ASSEMBLER) && defined (OBJ_COFF)
2857 || S_GET_STORAGE_CLASS (sym) == C_EXT
2859 || S_IS_EXTERNAL (sym))
2861 as_warn_where (fix->fx_file, fix->fx_line,
2862 _(".uses target does not refer to a local symbol in the same section"));
2866 /* Now we look through all the fixups of all the sections,
2867 counting the number of times we find a reference to sym. */
2870 #ifdef BFD_ASSEMBLER
2871 bfd_map_over_sections (stdoutput, sh_count_relocs, (PTR) &info);
2876 for (iscan = SEG_E0; iscan < SEG_UNKNOWN; iscan++)
2877 sh_count_relocs ((bfd *) NULL, iscan, (PTR) &info);
2884 /* Generate a BFD_RELOC_SH_COUNT fixup at the location of sym.
2885 We have already adjusted the value of sym to include the
2886 fragment address, so we undo that adjustment here. */
2887 subseg_change (sec, 0);
2888 fix_new (fscan->fx_frag,
2889 S_GET_VALUE (sym) - fscan->fx_frag->fr_address,
2890 4, &abs_symbol, info.count, 0, BFD_RELOC_SH_COUNT);
2894 /* This function is called after the symbol table has been completed,
2895 but before the relocs or section contents have been written out.
2896 If we have seen any .uses pseudo-ops, they point to an instruction
2897 which loads a register with the address of a function. We look
2898 through the fixups to find where the function address is being
2899 loaded from. We then generate a COUNT reloc giving the number of
2900 times that function address is referred to. The linker uses this
2901 information when doing relaxing, to decide when it can eliminate
2902 the stored function address entirely. */
2908 shmedia_frob_file_before_adjust ();
2914 #ifdef BFD_ASSEMBLER
2915 bfd_map_over_sections (stdoutput, sh_frob_section, (PTR) NULL);
2920 for (iseg = SEG_E0; iseg < SEG_UNKNOWN; iseg++)
2921 sh_frob_section ((bfd *) NULL, iseg, (PTR) NULL);
2926 /* Called after relaxing. Set the correct sizes of the fragments, and
2927 create relocs so that md_apply_fix3 will fill in the correct values. */
2930 md_convert_frag (headers, seg, fragP)
2931 #ifdef BFD_ASSEMBLER
2932 bfd *headers ATTRIBUTE_UNUSED;
2934 object_headers *headers ATTRIBUTE_UNUSED;
2941 switch (fragP->fr_subtype)
2943 case C (COND_JUMP, COND8):
2944 case C (COND_JUMP_DELAY, COND8):
2945 subseg_change (seg, 0);
2946 fix_new (fragP, fragP->fr_fix, 2, fragP->fr_symbol, fragP->fr_offset,
2947 1, BFD_RELOC_SH_PCDISP8BY2);
2952 case C (UNCOND_JUMP, UNCOND12):
2953 subseg_change (seg, 0);
2954 fix_new (fragP, fragP->fr_fix, 2, fragP->fr_symbol, fragP->fr_offset,
2955 1, BFD_RELOC_SH_PCDISP12BY2);
2960 case C (UNCOND_JUMP, UNCOND32):
2961 case C (UNCOND_JUMP, UNDEF_WORD_DISP):
2962 if (fragP->fr_symbol == NULL)
2963 as_bad_where (fragP->fr_file, fragP->fr_line,
2964 _("displacement overflows 12-bit field"));
2965 else if (S_IS_DEFINED (fragP->fr_symbol))
2966 as_bad_where (fragP->fr_file, fragP->fr_line,
2967 _("displacement to defined symbol %s overflows 12-bit field"),
2968 S_GET_NAME (fragP->fr_symbol));
2970 as_bad_where (fragP->fr_file, fragP->fr_line,
2971 _("displacement to undefined symbol %s overflows 12-bit field"),
2972 S_GET_NAME (fragP->fr_symbol));
2973 /* Stabilize this frag, so we don't trip an assert. */
2974 fragP->fr_fix += fragP->fr_var;
2978 case C (COND_JUMP, COND12):
2979 case C (COND_JUMP_DELAY, COND12):
2980 /* A bcond won't fit, so turn it into a b!cond; bra disp; nop. */
2981 /* I found that a relax failure for gcc.c-torture/execute/930628-1.c
2982 was due to gas incorrectly relaxing an out-of-range conditional
2983 branch with delay slot. It turned:
2984 bf.s L6 (slot mov.l r12,@(44,r0))
2987 2c: 8f 01 a0 8b bf.s 32 <_main+32> (slot bra L6)
2989 32: 10 cb mov.l r12,@(44,r0)
2990 Therefore, branches with delay slots have to be handled
2991 differently from ones without delay slots. */
2993 unsigned char *buffer =
2994 (unsigned char *) (fragP->fr_fix + fragP->fr_literal);
2995 int highbyte = target_big_endian ? 0 : 1;
2996 int lowbyte = target_big_endian ? 1 : 0;
2997 int delay = fragP->fr_subtype == C (COND_JUMP_DELAY, COND12);
2999 /* Toggle the true/false bit of the bcond. */
3000 buffer[highbyte] ^= 0x2;
3002 /* If this is a delayed branch, we may not put the bra in the
3003 slot. So we change it to a non-delayed branch, like that:
3004 b! cond slot_label; bra disp; slot_label: slot_insn
3005 ??? We should try if swapping the conditional branch and
3006 its delay-slot insn already makes the branch reach. */
3008 /* Build a relocation to six / four bytes farther on. */
3009 subseg_change (seg, 0);
3010 fix_new (fragP, fragP->fr_fix, 2,
3011 #ifdef BFD_ASSEMBLER
3012 section_symbol (seg),
3014 seg_info (seg)->dot,
3016 fragP->fr_address + fragP->fr_fix + (delay ? 4 : 6),
3017 1, BFD_RELOC_SH_PCDISP8BY2);
3019 /* Set up a jump instruction. */
3020 buffer[highbyte + 2] = 0xa0;
3021 buffer[lowbyte + 2] = 0;
3022 fix_new (fragP, fragP->fr_fix + 2, 2, fragP->fr_symbol,
3023 fragP->fr_offset, 1, BFD_RELOC_SH_PCDISP12BY2);
3027 buffer[highbyte] &= ~0x4; /* Removes delay slot from branch. */
3032 /* Fill in a NOP instruction. */
3033 buffer[highbyte + 4] = 0x0;
3034 buffer[lowbyte + 4] = 0x9;
3043 case C (COND_JUMP, COND32):
3044 case C (COND_JUMP_DELAY, COND32):
3045 case C (COND_JUMP, UNDEF_WORD_DISP):
3046 case C (COND_JUMP_DELAY, UNDEF_WORD_DISP):
3047 if (fragP->fr_symbol == NULL)
3048 as_bad_where (fragP->fr_file, fragP->fr_line,
3049 _("displacement overflows 8-bit field"));
3050 else if (S_IS_DEFINED (fragP->fr_symbol))
3051 as_bad_where (fragP->fr_file, fragP->fr_line,
3052 _("displacement to defined symbol %s overflows 8-bit field"),
3053 S_GET_NAME (fragP->fr_symbol));
3055 as_bad_where (fragP->fr_file, fragP->fr_line,
3056 _("displacement to undefined symbol %s overflows 8-bit field "),
3057 S_GET_NAME (fragP->fr_symbol));
3058 /* Stabilize this frag, so we don't trip an assert. */
3059 fragP->fr_fix += fragP->fr_var;
3065 shmedia_md_convert_frag (headers, seg, fragP, TRUE);
3071 if (donerelax && !sh_relax)
3072 as_warn_where (fragP->fr_file, fragP->fr_line,
3073 _("overflow in branch to %s; converted into longer instruction sequence"),
3074 (fragP->fr_symbol != NULL
3075 ? S_GET_NAME (fragP->fr_symbol)
3080 md_section_align (seg, size)
3081 segT seg ATTRIBUTE_UNUSED;
3084 #ifdef BFD_ASSEMBLER
3087 #else /* ! OBJ_ELF */
3088 return ((size + (1 << bfd_get_section_alignment (stdoutput, seg)) - 1)
3089 & (-1 << bfd_get_section_alignment (stdoutput, seg)));
3090 #endif /* ! OBJ_ELF */
3091 #else /* ! BFD_ASSEMBLER */
3092 return ((size + (1 << section_alignment[(int) seg]) - 1)
3093 & (-1 << section_alignment[(int) seg]));
3094 #endif /* ! BFD_ASSEMBLER */
3097 /* This static variable is set by s_uacons to tell sh_cons_align that
3098 the expession does not need to be aligned. */
3100 static int sh_no_align_cons = 0;
3102 /* This handles the unaligned space allocation pseudo-ops, such as
3103 .uaword. .uaword is just like .word, but the value does not need
3110 /* Tell sh_cons_align not to align this value. */
3111 sh_no_align_cons = 1;
3115 /* If a .word, et. al., pseud-op is seen, warn if the value is not
3116 aligned correctly. Note that this can cause warnings to be issued
3117 when assembling initialized structured which were declared with the
3118 packed attribute. FIXME: Perhaps we should require an option to
3119 enable this warning? */
3122 sh_cons_align (nbytes)
3128 if (sh_no_align_cons)
3130 /* This is an unaligned pseudo-op. */
3131 sh_no_align_cons = 0;
3136 while ((nbytes & 1) == 0)
3145 if (now_seg == absolute_section)
3147 if ((abs_section_offset & ((1 << nalign) - 1)) != 0)
3148 as_warn (_("misaligned data"));
3152 p = frag_var (rs_align_test, 1, 1, (relax_substateT) 0,
3153 (symbolS *) NULL, (offsetT) nalign, (char *) NULL);
3155 record_alignment (now_seg, nalign);
3158 /* When relaxing, we need to output a reloc for any .align directive
3159 that requests alignment to a four byte boundary or larger. This is
3160 also where we check for misaligned data. */
3163 sh_handle_align (frag)
3166 int bytes = frag->fr_next->fr_address - frag->fr_address - frag->fr_fix;
3168 if (frag->fr_type == rs_align_code)
3170 static const unsigned char big_nop_pattern[] = { 0x00, 0x09 };
3171 static const unsigned char little_nop_pattern[] = { 0x09, 0x00 };
3173 char *p = frag->fr_literal + frag->fr_fix;
3182 if (target_big_endian)
3184 memcpy (p, big_nop_pattern, sizeof big_nop_pattern);
3185 frag->fr_var = sizeof big_nop_pattern;
3189 memcpy (p, little_nop_pattern, sizeof little_nop_pattern);
3190 frag->fr_var = sizeof little_nop_pattern;
3193 else if (frag->fr_type == rs_align_test)
3196 as_warn_where (frag->fr_file, frag->fr_line, _("misaligned data"));
3200 && (frag->fr_type == rs_align
3201 || frag->fr_type == rs_align_code)
3202 && frag->fr_address + frag->fr_fix > 0
3203 && frag->fr_offset > 1
3204 && now_seg != bss_section)
3205 fix_new (frag, frag->fr_fix, 2, &abs_symbol, frag->fr_offset, 0,
3206 BFD_RELOC_SH_ALIGN);
3209 /* See whether the relocation should be resolved locally. */
3212 sh_local_pcrel (fix)
3216 && (fix->fx_r_type == BFD_RELOC_SH_PCDISP8BY2
3217 || fix->fx_r_type == BFD_RELOC_SH_PCDISP12BY2
3218 || fix->fx_r_type == BFD_RELOC_SH_PCRELIMM8BY2
3219 || fix->fx_r_type == BFD_RELOC_SH_PCRELIMM8BY4
3220 || fix->fx_r_type == BFD_RELOC_8_PCREL
3221 || fix->fx_r_type == BFD_RELOC_SH_SWITCH16
3222 || fix->fx_r_type == BFD_RELOC_SH_SWITCH32));
3225 /* See whether we need to force a relocation into the output file.
3226 This is used to force out switch and PC relative relocations when
3230 sh_force_relocation (fix)
3233 /* These relocations can't make it into a DSO, so no use forcing
3234 them for global symbols. */
3235 if (sh_local_pcrel (fix))
3238 /* Make sure some relocations get emitted. */
3239 if (fix->fx_r_type == BFD_RELOC_SH_LOOP_START
3240 || fix->fx_r_type == BFD_RELOC_SH_LOOP_END
3241 || fix->fx_r_type == BFD_RELOC_SH_TLS_GD_32
3242 || fix->fx_r_type == BFD_RELOC_SH_TLS_LD_32
3243 || fix->fx_r_type == BFD_RELOC_SH_TLS_IE_32
3244 || fix->fx_r_type == BFD_RELOC_SH_TLS_LDO_32
3245 || fix->fx_r_type == BFD_RELOC_SH_TLS_LE_32
3246 || generic_force_reloc (fix))
3252 return (fix->fx_pcrel
3253 || SWITCH_TABLE (fix)
3254 || fix->fx_r_type == BFD_RELOC_SH_COUNT
3255 || fix->fx_r_type == BFD_RELOC_SH_ALIGN
3256 || fix->fx_r_type == BFD_RELOC_SH_CODE
3257 || fix->fx_r_type == BFD_RELOC_SH_DATA
3259 || fix->fx_r_type == BFD_RELOC_SH_SHMEDIA_CODE
3261 || fix->fx_r_type == BFD_RELOC_SH_LABEL);
3266 sh_fix_adjustable (fixP)
3269 if (fixP->fx_r_type == BFD_RELOC_32_PLT_PCREL
3270 || fixP->fx_r_type == BFD_RELOC_32_GOT_PCREL
3271 || fixP->fx_r_type == BFD_RELOC_SH_GOTPC
3272 || fixP->fx_r_type == BFD_RELOC_RVA)
3275 /* We need the symbol name for the VTABLE entries */
3276 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3277 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3284 sh_elf_final_processing ()
3288 /* Set file-specific flags to indicate if this code needs
3289 a processor with the sh-dsp / sh3e ISA to execute. */
3291 /* SH5 and above don't know about the valid_arch arch_sh* bits defined
3292 in sh-opc.h, so check SH64 mode before checking valid_arch. */
3293 if (sh64_isa_mode != sh64_isa_unspecified)
3296 #endif /* HAVE_SH64 */
3297 if (valid_arch & arch_sh1)
3299 else if (valid_arch & arch_sh2)
3301 else if (valid_arch & arch_sh_dsp)
3303 else if (valid_arch & arch_sh3)
3305 else if (valid_arch & arch_sh3_dsp)
3307 else if (valid_arch & arch_sh3e)
3309 else if (valid_arch & arch_sh4)
3314 elf_elfheader (stdoutput)->e_flags &= ~EF_SH_MACH_MASK;
3315 elf_elfheader (stdoutput)->e_flags |= val;
3319 /* Apply a fixup to the object file. */
3322 md_apply_fix3 (fixP, valP, seg)
3325 segT seg ATTRIBUTE_UNUSED;
3327 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
3328 int lowbyte = target_big_endian ? 1 : 0;
3329 int highbyte = target_big_endian ? 0 : 1;
3330 long val = (long) *valP;
3334 #ifdef BFD_ASSEMBLER
3335 /* A difference between two symbols, the second of which is in the
3336 current section, is transformed in a PC-relative relocation to
3337 the other symbol. We have to adjust the relocation type here. */
3340 switch (fixP->fx_r_type)
3346 fixP->fx_r_type = BFD_RELOC_32_PCREL;
3349 /* Currently, we only support 32-bit PCREL relocations.
3350 We'd need a new reloc type to handle 16_PCREL, and
3351 8_PCREL is already taken for R_SH_SWITCH8, which
3352 apparently does something completely different than what
3355 bfd_set_error (bfd_error_bad_value);
3359 bfd_set_error (bfd_error_bad_value);
3364 /* The function adjust_reloc_syms won't convert a reloc against a weak
3365 symbol into a reloc against a section, but bfd_install_relocation
3366 will screw up if the symbol is defined, so we have to adjust val here
3367 to avoid the screw up later.
3369 For ordinary relocs, this does not happen for ELF, since for ELF,
3370 bfd_install_relocation uses the "special function" field of the
3371 howto, and does not execute the code that needs to be undone, as long
3372 as the special function does not return bfd_reloc_continue.
3373 It can happen for GOT- and PLT-type relocs the way they are
3374 described in elf32-sh.c as they use bfd_elf_generic_reloc, but it
3375 doesn't matter here since those relocs don't use VAL; see below. */
3376 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3377 && fixP->fx_addsy != NULL
3378 && S_IS_WEAK (fixP->fx_addsy))
3379 val -= S_GET_VALUE (fixP->fx_addsy);
3382 #ifndef BFD_ASSEMBLER
3383 if (fixP->fx_r_type == 0)
3385 if (fixP->fx_size == 2)
3386 fixP->fx_r_type = BFD_RELOC_16;
3387 else if (fixP->fx_size == 4)
3388 fixP->fx_r_type = BFD_RELOC_32;
3389 else if (fixP->fx_size == 1)
3390 fixP->fx_r_type = BFD_RELOC_8;
3398 switch (fixP->fx_r_type)
3400 case BFD_RELOC_SH_IMM4:
3402 *buf = (*buf & 0xf0) | (val & 0xf);
3405 case BFD_RELOC_SH_IMM4BY2:
3408 *buf = (*buf & 0xf0) | ((val >> 1) & 0xf);
3411 case BFD_RELOC_SH_IMM4BY4:
3414 *buf = (*buf & 0xf0) | ((val >> 2) & 0xf);
3417 case BFD_RELOC_SH_IMM8BY2:
3423 case BFD_RELOC_SH_IMM8BY4:
3430 case BFD_RELOC_SH_IMM8:
3431 /* Sometimes the 8 bit value is sign extended (e.g., add) and
3432 sometimes it is not (e.g., and). We permit any 8 bit value.
3433 Note that adding further restrictions may invalidate
3434 reasonable looking assembly code, such as ``and -0x1,r0''. */
3440 case BFD_RELOC_SH_PCRELIMM8BY4:
3441 /* The lower two bits of the PC are cleared before the
3442 displacement is added in. We can assume that the destination
3443 is on a 4 byte bounday. If this instruction is also on a 4
3444 byte boundary, then we want
3446 and target - here is a multiple of 4.
3447 Otherwise, we are on a 2 byte boundary, and we want
3448 (target - (here - 2)) / 4
3449 and target - here is not a multiple of 4. Computing
3450 (target - (here - 2)) / 4 == (target - here + 2) / 4
3451 works for both cases, since in the first case the addition of
3452 2 will be removed by the division. target - here is in the
3454 val = (val + 2) / 4;
3456 as_bad_where (fixP->fx_file, fixP->fx_line, _("pcrel too far"));
3460 case BFD_RELOC_SH_PCRELIMM8BY2:
3463 as_bad_where (fixP->fx_file, fixP->fx_line, _("pcrel too far"));
3467 case BFD_RELOC_SH_PCDISP8BY2:
3469 if (val < -0x80 || val > 0x7f)
3470 as_bad_where (fixP->fx_file, fixP->fx_line, _("pcrel too far"));
3474 case BFD_RELOC_SH_PCDISP12BY2:
3476 if (val < -0x800 || val > 0x7ff)
3477 as_bad_where (fixP->fx_file, fixP->fx_line, _("pcrel too far"));
3478 buf[lowbyte] = val & 0xff;
3479 buf[highbyte] |= (val >> 8) & 0xf;
3483 case BFD_RELOC_32_PCREL:
3484 md_number_to_chars (buf, val, 4);
3488 md_number_to_chars (buf, val, 2);
3491 case BFD_RELOC_SH_USES:
3492 /* Pass the value into sh_coff_reloc_mangle. */
3493 fixP->fx_addnumber = val;
3496 case BFD_RELOC_SH_COUNT:
3497 case BFD_RELOC_SH_ALIGN:
3498 case BFD_RELOC_SH_CODE:
3499 case BFD_RELOC_SH_DATA:
3500 case BFD_RELOC_SH_LABEL:
3501 /* Nothing to do here. */
3504 case BFD_RELOC_SH_LOOP_START:
3505 case BFD_RELOC_SH_LOOP_END:
3507 case BFD_RELOC_VTABLE_INHERIT:
3508 case BFD_RELOC_VTABLE_ENTRY:
3513 case BFD_RELOC_32_PLT_PCREL:
3514 /* Make the jump instruction point to the address of the operand. At
3515 runtime we merely add the offset to the actual PLT entry. */
3516 * valP = 0xfffffffc;
3517 val = fixP->fx_offset;
3519 val -= S_GET_VALUE (fixP->fx_subsy);
3520 fixP->fx_addnumber = val;
3521 md_number_to_chars (buf, val, 4);
3524 case BFD_RELOC_SH_GOTPC:
3525 /* This is tough to explain. We end up with this one if we have
3526 operands that look like "_GLOBAL_OFFSET_TABLE_+[.-.L284]".
3527 The goal here is to obtain the absolute address of the GOT,
3528 and it is strongly preferable from a performance point of
3529 view to avoid using a runtime relocation for this. There are
3530 cases where you have something like:
3532 .long _GLOBAL_OFFSET_TABLE_+[.-.L66]
3534 and here no correction would be required. Internally in the
3535 assembler we treat operands of this form as not being pcrel
3536 since the '.' is explicitly mentioned, and I wonder whether
3537 it would simplify matters to do it this way. Who knows. In
3538 earlier versions of the PIC patches, the pcrel_adjust field
3539 was used to store the correction, but since the expression is
3540 not pcrel, I felt it would be confusing to do it this way. */
3542 md_number_to_chars (buf, val, 4);
3545 case BFD_RELOC_SH_TLS_GD_32:
3546 case BFD_RELOC_SH_TLS_LD_32:
3547 case BFD_RELOC_SH_TLS_IE_32:
3548 S_SET_THREAD_LOCAL (fixP->fx_addsy);
3550 case BFD_RELOC_32_GOT_PCREL:
3551 case BFD_RELOC_SH_GOTPLT32:
3552 * valP = 0; /* Fully resolved at runtime. No addend. */
3553 md_number_to_chars (buf, 0, 4);
3556 case BFD_RELOC_SH_TLS_LDO_32:
3557 case BFD_RELOC_SH_TLS_LE_32:
3558 S_SET_THREAD_LOCAL (fixP->fx_addsy);
3560 case BFD_RELOC_32_GOTOFF:
3561 md_number_to_chars (buf, val, 4);
3567 shmedia_md_apply_fix3 (fixP, valP);
3576 if ((val & ((1 << shift) - 1)) != 0)
3577 as_bad_where (fixP->fx_file, fixP->fx_line, _("misaligned offset"));
3581 val = ((val >> shift)
3582 | ((long) -1 & ~ ((long) -1 >> shift)));
3584 if (max != 0 && (val < min || val > max))
3585 as_bad_where (fixP->fx_file, fixP->fx_line, _("offset out of range"));
3587 if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
3591 /* Called just before address relaxation. Return the length
3592 by which a fragment must grow to reach it's destination. */
3595 md_estimate_size_before_relax (fragP, segment_type)
3596 register fragS *fragP;
3597 register segT segment_type;
3601 switch (fragP->fr_subtype)
3605 return shmedia_md_estimate_size_before_relax (fragP, segment_type);
3611 case C (UNCOND_JUMP, UNDEF_DISP):
3612 /* Used to be a branch to somewhere which was unknown. */
3613 if (!fragP->fr_symbol)
3615 fragP->fr_subtype = C (UNCOND_JUMP, UNCOND12);
3617 else if (S_GET_SEGMENT (fragP->fr_symbol) == segment_type)
3619 fragP->fr_subtype = C (UNCOND_JUMP, UNCOND12);
3623 fragP->fr_subtype = C (UNCOND_JUMP, UNDEF_WORD_DISP);
3627 case C (COND_JUMP, UNDEF_DISP):
3628 case C (COND_JUMP_DELAY, UNDEF_DISP):
3629 what = GET_WHAT (fragP->fr_subtype);
3630 /* Used to be a branch to somewhere which was unknown. */
3631 if (fragP->fr_symbol
3632 && S_GET_SEGMENT (fragP->fr_symbol) == segment_type)
3634 /* Got a symbol and it's defined in this segment, become byte
3635 sized - maybe it will fix up. */
3636 fragP->fr_subtype = C (what, COND8);
3638 else if (fragP->fr_symbol)
3640 /* Its got a segment, but its not ours, so it will always be long. */
3641 fragP->fr_subtype = C (what, UNDEF_WORD_DISP);
3645 /* We know the abs value. */
3646 fragP->fr_subtype = C (what, COND8);
3650 case C (UNCOND_JUMP, UNCOND12):
3651 case C (UNCOND_JUMP, UNCOND32):
3652 case C (UNCOND_JUMP, UNDEF_WORD_DISP):
3653 case C (COND_JUMP, COND8):
3654 case C (COND_JUMP, COND12):
3655 case C (COND_JUMP, COND32):
3656 case C (COND_JUMP, UNDEF_WORD_DISP):
3657 case C (COND_JUMP_DELAY, COND8):
3658 case C (COND_JUMP_DELAY, COND12):
3659 case C (COND_JUMP_DELAY, COND32):
3660 case C (COND_JUMP_DELAY, UNDEF_WORD_DISP):
3661 /* When relaxing a section for the second time, we don't need to
3662 do anything besides return the current size. */
3666 fragP->fr_var = md_relax_table[fragP->fr_subtype].rlx_length;
3667 return fragP->fr_var;
3670 /* Put number into target byte order. */
3673 md_number_to_chars (ptr, use, nbytes)
3679 /* We might need to set the contents type to data. */
3680 sh64_flag_output ();
3683 if (! target_big_endian)
3684 number_to_chars_littleendian (ptr, use, nbytes);
3686 number_to_chars_bigendian (ptr, use, nbytes);
3689 /* This version is used in obj-coff.c when not using BFD_ASSEMBLER.
3690 eg for the sh-hms target. */
3693 md_pcrel_from (fixP)
3696 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address + 2;
3700 md_pcrel_from_section (fixP, sec)
3704 if (! sh_local_pcrel (fixP)
3705 && fixP->fx_addsy != (symbolS *) NULL
3706 && (generic_force_reloc (fixP)
3707 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
3709 /* The symbol is undefined (or is defined but not in this section,
3710 or we're not sure about it being the final definition). Let the
3711 linker figure it out. We need to adjust the subtraction of a
3712 symbol to the position of the relocated data, though. */
3713 return fixP->fx_subsy ? fixP->fx_where + fixP->fx_frag->fr_address : 0;
3716 return md_pcrel_from (fixP);
3722 tc_coff_sizemachdep (frag)
3725 return md_relax_table[frag->fr_subtype].rlx_length;
3728 #endif /* OBJ_COFF */
3730 #ifndef BFD_ASSEMBLER
3733 /* Map BFD relocs to SH COFF relocs. */
3737 bfd_reloc_code_real_type bfd_reloc;
3741 static const struct reloc_map coff_reloc_map[] =
3743 { BFD_RELOC_32, R_SH_IMM32 },
3744 { BFD_RELOC_16, R_SH_IMM16 },
3745 { BFD_RELOC_8, R_SH_IMM8 },
3746 { BFD_RELOC_SH_PCDISP8BY2, R_SH_PCDISP8BY2 },
3747 { BFD_RELOC_SH_PCDISP12BY2, R_SH_PCDISP },
3748 { BFD_RELOC_SH_IMM4, R_SH_IMM4 },
3749 { BFD_RELOC_SH_IMM4BY2, R_SH_IMM4BY2 },
3750 { BFD_RELOC_SH_IMM4BY4, R_SH_IMM4BY4 },
3751 { BFD_RELOC_SH_IMM8, R_SH_IMM8 },
3752 { BFD_RELOC_SH_IMM8BY2, R_SH_IMM8BY2 },
3753 { BFD_RELOC_SH_IMM8BY4, R_SH_IMM8BY4 },
3754 { BFD_RELOC_SH_PCRELIMM8BY2, R_SH_PCRELIMM8BY2 },
3755 { BFD_RELOC_SH_PCRELIMM8BY4, R_SH_PCRELIMM8BY4 },
3756 { BFD_RELOC_8_PCREL, R_SH_SWITCH8 },
3757 { BFD_RELOC_SH_SWITCH16, R_SH_SWITCH16 },
3758 { BFD_RELOC_SH_SWITCH32, R_SH_SWITCH32 },
3759 { BFD_RELOC_SH_USES, R_SH_USES },
3760 { BFD_RELOC_SH_COUNT, R_SH_COUNT },
3761 { BFD_RELOC_SH_ALIGN, R_SH_ALIGN },
3762 { BFD_RELOC_SH_CODE, R_SH_CODE },
3763 { BFD_RELOC_SH_DATA, R_SH_DATA },
3764 { BFD_RELOC_SH_LABEL, R_SH_LABEL },
3765 { BFD_RELOC_UNUSED, 0 }
3768 /* Adjust a reloc for the SH. This is similar to the generic code,
3769 but does some minor tweaking. */
3772 sh_coff_reloc_mangle (seg, fix, intr, paddr)
3773 segment_info_type *seg;
3775 struct internal_reloc *intr;
3778 symbolS *symbol_ptr = fix->fx_addsy;
3781 intr->r_vaddr = paddr + fix->fx_frag->fr_address + fix->fx_where;
3783 if (! SWITCH_TABLE (fix))
3785 const struct reloc_map *rm;
3787 for (rm = coff_reloc_map; rm->bfd_reloc != BFD_RELOC_UNUSED; rm++)
3788 if (rm->bfd_reloc == (bfd_reloc_code_real_type) fix->fx_r_type)
3790 if (rm->bfd_reloc == BFD_RELOC_UNUSED)
3791 as_bad_where (fix->fx_file, fix->fx_line,
3792 _("Can not represent %s relocation in this object file format"),
3793 bfd_get_reloc_code_name (fix->fx_r_type));
3794 intr->r_type = rm->sh_reloc;
3801 if (fix->fx_r_type == BFD_RELOC_16)
3802 intr->r_type = R_SH_SWITCH16;
3803 else if (fix->fx_r_type == BFD_RELOC_8)
3804 intr->r_type = R_SH_SWITCH8;
3805 else if (fix->fx_r_type == BFD_RELOC_32)
3806 intr->r_type = R_SH_SWITCH32;
3810 /* For a switch reloc, we set r_offset to the difference between
3811 the reloc address and the subtrahend. When the linker is
3812 doing relaxing, it can use the determine the starting and
3813 ending points of the switch difference expression. */
3814 intr->r_offset = intr->r_vaddr - S_GET_VALUE (fix->fx_subsy);
3817 /* PC relative relocs are always against the current section. */
3818 if (symbol_ptr == NULL)
3820 switch (fix->fx_r_type)
3822 case BFD_RELOC_SH_PCRELIMM8BY2:
3823 case BFD_RELOC_SH_PCRELIMM8BY4:
3824 case BFD_RELOC_SH_PCDISP8BY2:
3825 case BFD_RELOC_SH_PCDISP12BY2:
3826 case BFD_RELOC_SH_USES:
3827 symbol_ptr = seg->dot;
3834 if (fix->fx_r_type == BFD_RELOC_SH_USES)
3836 /* We can't store the offset in the object file, since this
3837 reloc does not take up any space, so we store it in r_offset.
3838 The fx_addnumber field was set in md_apply_fix3. */
3839 intr->r_offset = fix->fx_addnumber;
3841 else if (fix->fx_r_type == BFD_RELOC_SH_COUNT)
3843 /* We can't store the count in the object file, since this reloc
3844 does not take up any space, so we store it in r_offset. The
3845 fx_offset field was set when the fixup was created in
3846 sh_coff_frob_file. */
3847 intr->r_offset = fix->fx_offset;
3848 /* This reloc is always absolute. */
3851 else if (fix->fx_r_type == BFD_RELOC_SH_ALIGN)
3853 /* Store the alignment in the r_offset field. */
3854 intr->r_offset = fix->fx_offset;
3855 /* This reloc is always absolute. */
3858 else if (fix->fx_r_type == BFD_RELOC_SH_CODE
3859 || fix->fx_r_type == BFD_RELOC_SH_DATA
3860 || fix->fx_r_type == BFD_RELOC_SH_LABEL)
3862 /* These relocs are always absolute. */
3866 /* Turn the segment of the symbol into an offset. */
3867 if (symbol_ptr != NULL)
3869 dot = segment_info[S_GET_SEGMENT (symbol_ptr)].dot;
3871 intr->r_symndx = dot->sy_number;
3873 intr->r_symndx = symbol_ptr->sy_number;
3876 intr->r_symndx = -1;
3879 #endif /* OBJ_COFF */
3880 #endif /* ! BFD_ASSEMBLER */
3882 #ifdef BFD_ASSEMBLER
3884 /* Create a reloc. */
3887 tc_gen_reloc (section, fixp)
3888 asection *section ATTRIBUTE_UNUSED;
3892 bfd_reloc_code_real_type r_type;
3894 rel = (arelent *) xmalloc (sizeof (arelent));
3895 rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
3896 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
3897 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
3899 r_type = fixp->fx_r_type;
3901 if (SWITCH_TABLE (fixp))
3903 rel->addend = rel->address - S_GET_VALUE (fixp->fx_subsy);
3904 if (r_type == BFD_RELOC_16)
3905 r_type = BFD_RELOC_SH_SWITCH16;
3906 else if (r_type == BFD_RELOC_8)
3907 r_type = BFD_RELOC_8_PCREL;
3908 else if (r_type == BFD_RELOC_32)
3909 r_type = BFD_RELOC_SH_SWITCH32;
3913 else if (r_type == BFD_RELOC_SH_USES)
3914 rel->addend = fixp->fx_addnumber;
3915 else if (r_type == BFD_RELOC_SH_COUNT)
3916 rel->addend = fixp->fx_offset;
3917 else if (r_type == BFD_RELOC_SH_ALIGN)
3918 rel->addend = fixp->fx_offset;
3919 else if (r_type == BFD_RELOC_VTABLE_INHERIT
3920 || r_type == BFD_RELOC_VTABLE_ENTRY)
3921 rel->addend = fixp->fx_offset;
3922 else if (r_type == BFD_RELOC_SH_LOOP_START
3923 || r_type == BFD_RELOC_SH_LOOP_END)
3924 rel->addend = fixp->fx_offset;
3925 else if (r_type == BFD_RELOC_SH_LABEL && fixp->fx_pcrel)
3928 rel->address = rel->addend = fixp->fx_offset;
3931 else if (shmedia_init_reloc (rel, fixp))
3934 else if (fixp->fx_pcrel)
3935 rel->addend = fixp->fx_addnumber;
3936 else if (r_type == BFD_RELOC_32 || r_type == BFD_RELOC_32_GOTOFF)
3937 rel->addend = fixp->fx_addnumber;
3941 rel->howto = bfd_reloc_type_lookup (stdoutput, r_type);
3942 if (rel->howto == NULL)
3944 as_bad_where (fixp->fx_file, fixp->fx_line,
3945 _("Cannot represent relocation type %s"),
3946 bfd_get_reloc_code_name (r_type));
3947 /* Set howto to a garbage value so that we can keep going. */
3948 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
3949 assert (rel->howto != NULL);
3956 inline static char *
3957 sh_end_of_match (cont, what)
3960 int len = strlen (what);
3962 if (strncasecmp (cont, what, strlen (what)) == 0
3963 && ! is_part_of_name (cont[len]))
3970 sh_parse_name (name, exprP, nextcharP)
3975 char *next = input_line_pointer;
3980 exprP->X_op_symbol = NULL;
3982 if (strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
3985 GOT_symbol = symbol_find_or_make (name);
3987 exprP->X_add_symbol = GOT_symbol;
3989 /* If we have an absolute symbol or a reg, then we know its
3991 segment = S_GET_SEGMENT (exprP->X_add_symbol);
3992 if (segment == absolute_section)
3994 exprP->X_op = O_constant;
3995 exprP->X_add_number = S_GET_VALUE (exprP->X_add_symbol);
3996 exprP->X_add_symbol = NULL;
3998 else if (segment == reg_section)
4000 exprP->X_op = O_register;
4001 exprP->X_add_number = S_GET_VALUE (exprP->X_add_symbol);
4002 exprP->X_add_symbol = NULL;
4006 exprP->X_op = O_symbol;
4007 exprP->X_add_number = 0;
4013 exprP->X_add_symbol = symbol_find_or_make (name);
4015 if (*nextcharP != '@')
4017 else if ((next_end = sh_end_of_match (next + 1, "GOTOFF")))
4018 reloc_type = BFD_RELOC_32_GOTOFF;
4019 else if ((next_end = sh_end_of_match (next + 1, "GOTPLT")))
4020 reloc_type = BFD_RELOC_SH_GOTPLT32;
4021 else if ((next_end = sh_end_of_match (next + 1, "GOT")))
4022 reloc_type = BFD_RELOC_32_GOT_PCREL;
4023 else if ((next_end = sh_end_of_match (next + 1, "PLT")))
4024 reloc_type = BFD_RELOC_32_PLT_PCREL;
4025 else if ((next_end = sh_end_of_match (next + 1, "TLSGD")))
4026 reloc_type = BFD_RELOC_SH_TLS_GD_32;
4027 else if ((next_end = sh_end_of_match (next + 1, "TLSLDM")))
4028 reloc_type = BFD_RELOC_SH_TLS_LD_32;
4029 else if ((next_end = sh_end_of_match (next + 1, "GOTTPOFF")))
4030 reloc_type = BFD_RELOC_SH_TLS_IE_32;
4031 else if ((next_end = sh_end_of_match (next + 1, "TPOFF")))
4032 reloc_type = BFD_RELOC_SH_TLS_LE_32;
4033 else if ((next_end = sh_end_of_match (next + 1, "DTPOFF")))
4034 reloc_type = BFD_RELOC_SH_TLS_LDO_32;
4038 *input_line_pointer = *nextcharP;
4039 input_line_pointer = next_end;
4040 *nextcharP = *input_line_pointer;
4041 *input_line_pointer = '\0';
4043 exprP->X_op = O_PIC_reloc;
4044 exprP->X_add_number = 0;
4045 exprP->X_md = reloc_type;
4050 #endif /* BFD_ASSEMBLER */