1 /* tc-sh.c -- Assemble code for the Renesas / SuperH SH
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007 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 3, 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, 51 Franklin Street - Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* Written By Steve Chamberlain <sac@cygnus.com> */
27 #include "opcodes/sh-opc.h"
28 #include "safe-ctype.h"
29 #include "struc-symbol.h"
35 #include "dwarf2dbg.h"
36 #include "dw2gencfi.h"
42 expressionS immediate
;
46 const char comment_chars
[] = "!";
47 const char line_separator_chars
[] = ";";
48 const char line_comment_chars
[] = "!#";
50 static void s_uses (int);
51 static void s_uacons (int);
54 static void sh_elf_cons (int);
56 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
60 big (int ignore ATTRIBUTE_UNUSED
)
62 if (! target_big_endian
)
63 as_bad (_("directive .big encountered when option -big required"));
65 /* Stop further messages. */
66 target_big_endian
= 1;
70 little (int ignore ATTRIBUTE_UNUSED
)
72 if (target_big_endian
)
73 as_bad (_("directive .little encountered when option -little required"));
75 /* Stop further messages. */
76 target_big_endian
= 0;
79 /* This table describes all the machine specific pseudo-ops the assembler
80 has to support. The fields are:
81 pseudo-op name without dot
82 function to call to execute this pseudo-op
83 Integer arg to pass to the function. */
85 const pseudo_typeS md_pseudo_table
[] =
88 {"long", sh_elf_cons
, 4},
89 {"int", sh_elf_cons
, 4},
90 {"word", sh_elf_cons
, 2},
91 {"short", sh_elf_cons
, 2},
97 {"form", listing_psize
, 0},
98 {"little", little
, 0},
99 {"heading", listing_title
, 0},
100 {"import", s_ignore
, 0},
101 {"page", listing_eject
, 0},
102 {"program", s_ignore
, 0},
104 {"uaword", s_uacons
, 2},
105 {"ualong", s_uacons
, 4},
106 {"uaquad", s_uacons
, 8},
107 {"2byte", s_uacons
, 2},
108 {"4byte", s_uacons
, 4},
109 {"8byte", s_uacons
, 8},
111 {"mode", s_sh64_mode
, 0 },
113 /* Have the old name too. */
114 {"isa", s_sh64_mode
, 0 },
116 /* Assert that the right ABI is used. */
117 {"abi", s_sh64_abi
, 0 },
119 { "vtable_inherit", sh64_vtable_inherit
, 0 },
120 { "vtable_entry", sh64_vtable_entry
, 0 },
121 #endif /* HAVE_SH64 */
125 int sh_relax
; /* set if -relax seen */
127 /* Whether -small was seen. */
131 /* Flag to generate relocations against symbol values for local symbols. */
133 static int dont_adjust_reloc_32
;
135 /* Flag to indicate that '$' is allowed as a register prefix. */
137 static int allow_dollar_register_prefix
;
139 /* Preset architecture set, if given; zero otherwise. */
141 static unsigned int preset_target_arch
;
143 /* The bit mask of architectures that could
144 accommodate the insns seen so far. */
145 static unsigned int valid_arch
;
147 const char EXP_CHARS
[] = "eE";
149 /* Chars that mean this number is a floating point constant. */
152 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
154 #define C(a,b) ENCODE_RELAX(a,b)
156 #define ENCODE_RELAX(what,length) (((what) << 4) + (length))
157 #define GET_WHAT(x) ((x>>4))
159 /* These are the three types of relaxable instruction. */
160 /* These are the types of relaxable instructions; except for END which is
163 #define COND_JUMP_DELAY 2
164 #define UNCOND_JUMP 3
168 /* A 16-bit (times four) pc-relative operand, at most expanded to 32 bits. */
169 #define SH64PCREL16_32 4
170 /* A 16-bit (times four) pc-relative operand, at most expanded to 64 bits. */
171 #define SH64PCREL16_64 5
173 /* Variants of the above for adjusting the insn to PTA or PTB according to
175 #define SH64PCREL16PT_32 6
176 #define SH64PCREL16PT_64 7
178 /* A MOVI expansion, expanding to at most 32 or 64 bits. */
179 #define MOVI_IMM_32 8
180 #define MOVI_IMM_32_PCREL 9
181 #define MOVI_IMM_64 10
182 #define MOVI_IMM_64_PCREL 11
185 #else /* HAVE_SH64 */
189 #endif /* HAVE_SH64 */
195 #define UNDEF_WORD_DISP 4
201 #define UNDEF_SH64PCREL 0
202 #define SH64PCREL16 1
203 #define SH64PCREL32 2
204 #define SH64PCREL48 3
205 #define SH64PCREL64 4
206 #define SH64PCRELPLT 5
214 #define MOVI_GOTOFF 6
216 #endif /* HAVE_SH64 */
218 /* Branch displacements are from the address of the branch plus
219 four, thus all minimum and maximum values have 4 added to them. */
222 #define COND8_LENGTH 2
224 /* There is one extra instruction before the branch, so we must add
225 two more bytes to account for it. */
226 #define COND12_F 4100
227 #define COND12_M -4090
228 #define COND12_LENGTH 6
230 #define COND12_DELAY_LENGTH 4
232 /* ??? The minimum and maximum values are wrong, but this does not matter
233 since this relocation type is not supported yet. */
234 #define COND32_F (1<<30)
235 #define COND32_M -(1<<30)
236 #define COND32_LENGTH 14
238 #define UNCOND12_F 4098
239 #define UNCOND12_M -4092
240 #define UNCOND12_LENGTH 2
242 /* ??? The minimum and maximum values are wrong, but this does not matter
243 since this relocation type is not supported yet. */
244 #define UNCOND32_F (1<<30)
245 #define UNCOND32_M -(1<<30)
246 #define UNCOND32_LENGTH 14
249 /* The trivial expansion of a SH64PCREL16 relaxation is just a "PT label,
250 TRd" as is the current insn, so no extra length. Note that the "reach"
251 is calculated from the address *after* that insn, but the offset in the
252 insn is calculated from the beginning of the insn. We also need to
253 take into account the implicit 1 coded as the "A" in PTA when counting
254 forward. If PTB reaches an odd address, we trap that as an error
255 elsewhere, so we don't have to have different relaxation entries. We
256 don't add a one to the negative range, since PTB would then have the
257 farthest backward-reaching value skipped, not generated at relaxation. */
258 #define SH64PCREL16_F (32767 * 4 - 4 + 1)
259 #define SH64PCREL16_M (-32768 * 4 - 4)
260 #define SH64PCREL16_LENGTH 0
262 /* The next step is to change that PT insn into
263 MOVI ((label - datalabel Ln) >> 16) & 65535, R25
264 SHORI (label - datalabel Ln) & 65535, R25
267 which means two extra insns, 8 extra bytes. This is the limit for the
270 The expressions look a bit bad since we have to adjust this to avoid overflow on a
272 #define SH64PCREL32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
273 #define SH64PCREL32_LENGTH (2 * 4)
275 /* Similarly, we just change the MOVI and add a SHORI for the 48-bit
277 #if BFD_HOST_64BIT_LONG
278 /* The "reach" type is long, so we can only do this for a 64-bit-long
280 #define SH64PCREL32_M (((long) -1 << 30) * 2 - 4)
281 #define SH64PCREL48_F ((((long) 1 << 47) - 1) - 4)
282 #define SH64PCREL48_M (((long) -1 << 47) - 4)
283 #define SH64PCREL48_LENGTH (3 * 4)
285 /* If the host does not have 64-bit longs, just make this state identical
286 in reach to the 32-bit state. Note that we have a slightly incorrect
287 reach, but the correct one above will overflow a 32-bit number. */
288 #define SH64PCREL32_M (((long) -1 << 30) * 2)
289 #define SH64PCREL48_F SH64PCREL32_F
290 #define SH64PCREL48_M SH64PCREL32_M
291 #define SH64PCREL48_LENGTH (3 * 4)
292 #endif /* BFD_HOST_64BIT_LONG */
294 /* And similarly for the 64-bit expansion; a MOVI + SHORI + SHORI + SHORI
296 #define SH64PCREL64_LENGTH (4 * 4)
298 /* For MOVI, we make the MOVI + SHORI... expansion you can see in the
299 SH64PCREL expansions. The PCREL one is similar, but the other has no
300 pc-relative reach; it must be fully expanded in
301 shmedia_md_estimate_size_before_relax. */
302 #define MOVI_16_LENGTH 0
303 #define MOVI_16_F (32767 - 4)
304 #define MOVI_16_M (-32768 - 4)
305 #define MOVI_32_LENGTH 4
306 #define MOVI_32_F ((((long) 1 << 30) - 1) * 2 + 1 - 4)
307 #define MOVI_48_LENGTH 8
309 #if BFD_HOST_64BIT_LONG
310 /* The "reach" type is long, so we can only do this for a 64-bit-long
312 #define MOVI_32_M (((long) -1 << 30) * 2 - 4)
313 #define MOVI_48_F ((((long) 1 << 47) - 1) - 4)
314 #define MOVI_48_M (((long) -1 << 47) - 4)
316 /* If the host does not have 64-bit longs, just make this state identical
317 in reach to the 32-bit state. Note that we have a slightly incorrect
318 reach, but the correct one above will overflow a 32-bit number. */
319 #define MOVI_32_M (((long) -1 << 30) * 2)
320 #define MOVI_48_F MOVI_32_F
321 #define MOVI_48_M MOVI_32_M
322 #endif /* BFD_HOST_64BIT_LONG */
324 #define MOVI_64_LENGTH 12
325 #endif /* HAVE_SH64 */
327 #define EMPTY { 0, 0, 0, 0 }
329 const relax_typeS md_relax_table
[C (END
, 0)] = {
330 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
331 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
334 /* C (COND_JUMP, COND8) */
335 { COND8_F
, COND8_M
, COND8_LENGTH
, C (COND_JUMP
, COND12
) },
336 /* C (COND_JUMP, COND12) */
337 { COND12_F
, COND12_M
, COND12_LENGTH
, C (COND_JUMP
, COND32
), },
338 /* C (COND_JUMP, COND32) */
339 { COND32_F
, COND32_M
, COND32_LENGTH
, 0, },
340 /* C (COND_JUMP, UNDEF_WORD_DISP) */
341 { 0, 0, COND32_LENGTH
, 0, },
343 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
346 /* C (COND_JUMP_DELAY, COND8) */
347 { COND8_F
, COND8_M
, COND8_LENGTH
, C (COND_JUMP_DELAY
, COND12
) },
348 /* C (COND_JUMP_DELAY, COND12) */
349 { COND12_F
, COND12_M
, COND12_DELAY_LENGTH
, C (COND_JUMP_DELAY
, COND32
), },
350 /* C (COND_JUMP_DELAY, COND32) */
351 { COND32_F
, COND32_M
, COND32_LENGTH
, 0, },
352 /* C (COND_JUMP_DELAY, UNDEF_WORD_DISP) */
353 { 0, 0, COND32_LENGTH
, 0, },
355 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
358 /* C (UNCOND_JUMP, UNCOND12) */
359 { UNCOND12_F
, UNCOND12_M
, UNCOND12_LENGTH
, C (UNCOND_JUMP
, UNCOND32
), },
360 /* C (UNCOND_JUMP, UNCOND32) */
361 { UNCOND32_F
, UNCOND32_M
, UNCOND32_LENGTH
, 0, },
363 /* C (UNCOND_JUMP, UNDEF_WORD_DISP) */
364 { 0, 0, UNCOND32_LENGTH
, 0, },
366 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
369 /* C (SH64PCREL16_32, SH64PCREL16) */
371 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16_32
, SH64PCREL32
) },
372 /* C (SH64PCREL16_32, SH64PCREL32) */
373 { 0, 0, SH64PCREL32_LENGTH
, 0 },
375 /* C (SH64PCREL16_32, SH64PCRELPLT) */
376 { 0, 0, SH64PCREL32_LENGTH
, 0 },
378 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
380 /* C (SH64PCREL16_64, SH64PCREL16) */
382 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16_64
, SH64PCREL32
) },
383 /* C (SH64PCREL16_64, SH64PCREL32) */
384 { SH64PCREL32_F
, SH64PCREL32_M
, SH64PCREL32_LENGTH
, C (SH64PCREL16_64
, SH64PCREL48
) },
385 /* C (SH64PCREL16_64, SH64PCREL48) */
386 { SH64PCREL48_F
, SH64PCREL48_M
, SH64PCREL48_LENGTH
, C (SH64PCREL16_64
, SH64PCREL64
) },
387 /* C (SH64PCREL16_64, SH64PCREL64) */
388 { 0, 0, SH64PCREL64_LENGTH
, 0 },
389 /* C (SH64PCREL16_64, SH64PCRELPLT) */
390 { 0, 0, SH64PCREL64_LENGTH
, 0 },
392 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
394 /* C (SH64PCREL16PT_32, SH64PCREL16) */
396 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16PT_32
, SH64PCREL32
) },
397 /* C (SH64PCREL16PT_32, SH64PCREL32) */
398 { 0, 0, SH64PCREL32_LENGTH
, 0 },
400 /* C (SH64PCREL16PT_32, SH64PCRELPLT) */
401 { 0, 0, SH64PCREL32_LENGTH
, 0 },
403 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
405 /* C (SH64PCREL16PT_64, SH64PCREL16) */
407 { SH64PCREL16_F
, SH64PCREL16_M
, SH64PCREL16_LENGTH
, C (SH64PCREL16PT_64
, SH64PCREL32
) },
408 /* C (SH64PCREL16PT_64, SH64PCREL32) */
412 C (SH64PCREL16PT_64
, SH64PCREL48
) },
413 /* C (SH64PCREL16PT_64, SH64PCREL48) */
414 { SH64PCREL48_F
, SH64PCREL48_M
, SH64PCREL48_LENGTH
, C (SH64PCREL16PT_64
, SH64PCREL64
) },
415 /* C (SH64PCREL16PT_64, SH64PCREL64) */
416 { 0, 0, SH64PCREL64_LENGTH
, 0 },
417 /* C (SH64PCREL16PT_64, SH64PCRELPLT) */
418 { 0, 0, SH64PCREL64_LENGTH
, 0},
420 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
422 /* C (MOVI_IMM_32, UNDEF_MOVI) */
423 { 0, 0, MOVI_32_LENGTH
, 0 },
424 /* C (MOVI_IMM_32, MOVI_16) */
425 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_32
, MOVI_32
) },
426 /* C (MOVI_IMM_32, MOVI_32) */
427 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, 0 },
429 /* C (MOVI_IMM_32, MOVI_GOTOFF) */
430 { 0, 0, MOVI_32_LENGTH
, 0 },
431 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
433 /* C (MOVI_IMM_32_PCREL, MOVI_16) */
435 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_32_PCREL
, MOVI_32
) },
436 /* C (MOVI_IMM_32_PCREL, MOVI_32) */
437 { 0, 0, MOVI_32_LENGTH
, 0 },
439 /* C (MOVI_IMM_32_PCREL, MOVI_PLT) */
440 { 0, 0, MOVI_32_LENGTH
, 0 },
442 /* C (MOVI_IMM_32_PCREL, MOVI_GOTPC) */
443 { 0, 0, MOVI_32_LENGTH
, 0 },
444 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
446 /* C (MOVI_IMM_64, UNDEF_MOVI) */
447 { 0, 0, MOVI_64_LENGTH
, 0 },
448 /* C (MOVI_IMM_64, MOVI_16) */
449 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_64
, MOVI_32
) },
450 /* C (MOVI_IMM_64, MOVI_32) */
451 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, C (MOVI_IMM_64
, MOVI_48
) },
452 /* C (MOVI_IMM_64, MOVI_48) */
453 { MOVI_48_F
, MOVI_48_M
, MOVI_48_LENGTH
, C (MOVI_IMM_64
, MOVI_64
) },
454 /* C (MOVI_IMM_64, MOVI_64) */
455 { 0, 0, MOVI_64_LENGTH
, 0 },
457 /* C (MOVI_IMM_64, MOVI_GOTOFF) */
458 { 0, 0, MOVI_64_LENGTH
, 0 },
459 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
461 /* C (MOVI_IMM_64_PCREL, MOVI_16) */
463 { MOVI_16_F
, MOVI_16_M
, MOVI_16_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_32
) },
464 /* C (MOVI_IMM_64_PCREL, MOVI_32) */
465 { MOVI_32_F
, MOVI_32_M
, MOVI_32_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_48
) },
466 /* C (MOVI_IMM_64_PCREL, MOVI_48) */
467 { MOVI_48_F
, MOVI_48_M
, MOVI_48_LENGTH
, C (MOVI_IMM_64_PCREL
, MOVI_64
) },
468 /* C (MOVI_IMM_64_PCREL, MOVI_64) */
469 { 0, 0, MOVI_64_LENGTH
, 0 },
470 /* C (MOVI_IMM_64_PCREL, MOVI_PLT) */
471 { 0, 0, MOVI_64_LENGTH
, 0 },
473 /* C (MOVI_IMM_64_PCREL, MOVI_GOTPC) */
474 { 0, 0, MOVI_64_LENGTH
, 0 },
475 EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
, EMPTY
,
477 #endif /* HAVE_SH64 */
483 static struct hash_control
*opcode_hash_control
; /* Opcode mnemonics */
487 /* Determinet whether the symbol needs any kind of PIC relocation. */
490 sh_PIC_related_p (symbolS
*sym
)
497 if (sym
== GOT_symbol
)
501 if (sh_PIC_related_p (*symbol_get_tc (sym
)))
505 exp
= symbol_get_value_expression (sym
);
507 return (exp
->X_op
== O_PIC_reloc
508 || sh_PIC_related_p (exp
->X_add_symbol
)
509 || sh_PIC_related_p (exp
->X_op_symbol
));
512 /* Determine the relocation type to be used to represent the
513 expression, that may be rearranged. */
516 sh_check_fixup (expressionS
*main_exp
, bfd_reloc_code_real_type
*r_type_p
)
518 expressionS
*exp
= main_exp
;
520 /* This is here for backward-compatibility only. GCC used to generated:
522 f@PLT + . - (.LPCS# + 2)
524 but we'd rather be able to handle this as a PIC-related reference
525 plus/minus a symbol. However, gas' parser gives us:
527 O_subtract (O_add (f@PLT, .), .LPCS#+2)
529 so we attempt to transform this into:
531 O_subtract (f@PLT, O_subtract (.LPCS#+2, .))
533 which we can handle simply below. */
534 if (exp
->X_op
== O_subtract
)
536 if (sh_PIC_related_p (exp
->X_op_symbol
))
539 exp
= symbol_get_value_expression (exp
->X_add_symbol
);
541 if (exp
&& sh_PIC_related_p (exp
->X_op_symbol
))
544 if (exp
&& exp
->X_op
== O_add
545 && sh_PIC_related_p (exp
->X_add_symbol
))
547 symbolS
*sym
= exp
->X_add_symbol
;
549 exp
->X_op
= O_subtract
;
550 exp
->X_add_symbol
= main_exp
->X_op_symbol
;
552 main_exp
->X_op_symbol
= main_exp
->X_add_symbol
;
553 main_exp
->X_add_symbol
= sym
;
555 main_exp
->X_add_number
+= exp
->X_add_number
;
556 exp
->X_add_number
= 0;
561 else if (exp
->X_op
== O_add
&& sh_PIC_related_p (exp
->X_op_symbol
))
564 if (exp
->X_op
== O_symbol
|| exp
->X_op
== O_add
|| exp
->X_op
== O_subtract
)
567 if (exp
->X_add_symbol
568 && (exp
->X_add_symbol
== GOT_symbol
570 && *symbol_get_tc (exp
->X_add_symbol
) == GOT_symbol
)))
574 case BFD_RELOC_SH_IMM_LOW16
:
575 *r_type_p
= BFD_RELOC_SH_GOTPC_LOW16
;
578 case BFD_RELOC_SH_IMM_MEDLOW16
:
579 *r_type_p
= BFD_RELOC_SH_GOTPC_MEDLOW16
;
582 case BFD_RELOC_SH_IMM_MEDHI16
:
583 *r_type_p
= BFD_RELOC_SH_GOTPC_MEDHI16
;
586 case BFD_RELOC_SH_IMM_HI16
:
587 *r_type_p
= BFD_RELOC_SH_GOTPC_HI16
;
591 case BFD_RELOC_UNUSED
:
592 *r_type_p
= BFD_RELOC_SH_GOTPC
;
601 if (exp
->X_add_symbol
&& exp
->X_add_symbol
== GOT_symbol
)
603 *r_type_p
= BFD_RELOC_SH_GOTPC
;
607 exp
= symbol_get_value_expression (exp
->X_add_symbol
);
612 if (exp
->X_op
== O_PIC_reloc
)
618 case BFD_RELOC_UNUSED
:
619 *r_type_p
= exp
->X_md
;
622 case BFD_RELOC_SH_IMM_LOW16
:
625 case BFD_RELOC_32_GOTOFF
:
626 *r_type_p
= BFD_RELOC_SH_GOTOFF_LOW16
;
629 case BFD_RELOC_SH_GOTPLT32
:
630 *r_type_p
= BFD_RELOC_SH_GOTPLT_LOW16
;
633 case BFD_RELOC_32_GOT_PCREL
:
634 *r_type_p
= BFD_RELOC_SH_GOT_LOW16
;
637 case BFD_RELOC_32_PLT_PCREL
:
638 *r_type_p
= BFD_RELOC_SH_PLT_LOW16
;
646 case BFD_RELOC_SH_IMM_MEDLOW16
:
649 case BFD_RELOC_32_GOTOFF
:
650 *r_type_p
= BFD_RELOC_SH_GOTOFF_MEDLOW16
;
653 case BFD_RELOC_SH_GOTPLT32
:
654 *r_type_p
= BFD_RELOC_SH_GOTPLT_MEDLOW16
;
657 case BFD_RELOC_32_GOT_PCREL
:
658 *r_type_p
= BFD_RELOC_SH_GOT_MEDLOW16
;
661 case BFD_RELOC_32_PLT_PCREL
:
662 *r_type_p
= BFD_RELOC_SH_PLT_MEDLOW16
;
670 case BFD_RELOC_SH_IMM_MEDHI16
:
673 case BFD_RELOC_32_GOTOFF
:
674 *r_type_p
= BFD_RELOC_SH_GOTOFF_MEDHI16
;
677 case BFD_RELOC_SH_GOTPLT32
:
678 *r_type_p
= BFD_RELOC_SH_GOTPLT_MEDHI16
;
681 case BFD_RELOC_32_GOT_PCREL
:
682 *r_type_p
= BFD_RELOC_SH_GOT_MEDHI16
;
685 case BFD_RELOC_32_PLT_PCREL
:
686 *r_type_p
= BFD_RELOC_SH_PLT_MEDHI16
;
694 case BFD_RELOC_SH_IMM_HI16
:
697 case BFD_RELOC_32_GOTOFF
:
698 *r_type_p
= BFD_RELOC_SH_GOTOFF_HI16
;
701 case BFD_RELOC_SH_GOTPLT32
:
702 *r_type_p
= BFD_RELOC_SH_GOTPLT_HI16
;
705 case BFD_RELOC_32_GOT_PCREL
:
706 *r_type_p
= BFD_RELOC_SH_GOT_HI16
;
709 case BFD_RELOC_32_PLT_PCREL
:
710 *r_type_p
= BFD_RELOC_SH_PLT_HI16
;
722 *r_type_p
= exp
->X_md
;
725 exp
->X_op
= O_symbol
;
728 main_exp
->X_add_symbol
= exp
->X_add_symbol
;
729 main_exp
->X_add_number
+= exp
->X_add_number
;
733 return (sh_PIC_related_p (exp
->X_add_symbol
)
734 || sh_PIC_related_p (exp
->X_op_symbol
));
739 /* Add expression EXP of SIZE bytes to offset OFF of fragment FRAG. */
742 sh_cons_fix_new (fragS
*frag
, int off
, int size
, expressionS
*exp
)
744 bfd_reloc_code_real_type r_type
= BFD_RELOC_UNUSED
;
746 if (sh_check_fixup (exp
, &r_type
))
747 as_bad (_("Invalid PIC expression."));
749 if (r_type
== BFD_RELOC_UNUSED
)
753 r_type
= BFD_RELOC_8
;
757 r_type
= BFD_RELOC_16
;
761 r_type
= BFD_RELOC_32
;
766 r_type
= BFD_RELOC_64
;
776 as_bad (_("unsupported BFD relocation size %u"), size
);
777 r_type
= BFD_RELOC_UNUSED
;
780 fix_new_exp (frag
, off
, size
, exp
, 0, r_type
);
783 /* The regular cons() function, that reads constants, doesn't support
784 suffixes such as @GOT, @GOTOFF and @PLT, that generate
785 machine-specific relocation types. So we must define it here. */
786 /* Clobbers input_line_pointer, checks end-of-line. */
787 /* NBYTES 1=.byte, 2=.word, 4=.long */
789 sh_elf_cons (register int nbytes
)
795 /* Update existing range to include a previous insn, if there was one. */
796 sh64_update_contents_mark (TRUE
);
798 /* We need to make sure the contents type is set to data. */
801 #endif /* HAVE_SH64 */
803 if (is_it_end_of_statement ())
805 demand_empty_rest_of_line ();
810 md_cons_align (nbytes
);
816 emit_expr (&exp
, (unsigned int) nbytes
);
818 while (*input_line_pointer
++ == ',');
820 input_line_pointer
--; /* Put terminator back into stream. */
821 if (*input_line_pointer
== '#' || *input_line_pointer
== '!')
823 while (! is_end_of_line
[(unsigned char) *input_line_pointer
++]);
826 demand_empty_rest_of_line ();
829 /* The regular frag_offset_fixed_p doesn't work for rs_align_test
833 align_test_frag_offset_fixed_p (const fragS
*frag1
, const fragS
*frag2
,
839 /* Start with offset initialised to difference between the two frags.
840 Prior to assigning frag addresses this will be zero. */
841 off
= frag1
->fr_address
- frag2
->fr_address
;
848 /* Maybe frag2 is after frag1. */
850 while (frag
->fr_type
== rs_fill
851 || frag
->fr_type
== rs_align_test
)
853 if (frag
->fr_type
== rs_fill
)
854 off
+= frag
->fr_fix
+ frag
->fr_offset
* frag
->fr_var
;
857 frag
= frag
->fr_next
;
867 /* Maybe frag1 is after frag2. */
868 off
= frag1
->fr_address
- frag2
->fr_address
;
870 while (frag
->fr_type
== rs_fill
871 || frag
->fr_type
== rs_align_test
)
873 if (frag
->fr_type
== rs_fill
)
874 off
-= frag
->fr_fix
+ frag
->fr_offset
* frag
->fr_var
;
877 frag
= frag
->fr_next
;
890 /* Optimize a difference of symbols which have rs_align_test frag if
894 sh_optimize_expr (expressionS
*l
, operatorT op
, expressionS
*r
)
899 && l
->X_op
== O_symbol
900 && r
->X_op
== O_symbol
901 && S_GET_SEGMENT (l
->X_add_symbol
) == S_GET_SEGMENT (r
->X_add_symbol
)
902 && (SEG_NORMAL (S_GET_SEGMENT (l
->X_add_symbol
))
903 || r
->X_add_symbol
== l
->X_add_symbol
)
904 && align_test_frag_offset_fixed_p (symbol_get_frag (l
->X_add_symbol
),
905 symbol_get_frag (r
->X_add_symbol
),
908 l
->X_add_number
-= r
->X_add_number
;
909 l
->X_add_number
-= frag_off
/ OCTETS_PER_BYTE
;
910 l
->X_add_number
+= (S_GET_VALUE (l
->X_add_symbol
)
911 - S_GET_VALUE (r
->X_add_symbol
));
912 l
->X_op
= O_constant
;
920 /* This function is called once, at assembler startup time. This should
921 set up all the tables, etc that the MD part of the assembler needs. */
926 const sh_opcode_info
*opcode
;
927 char *prev_name
= "";
928 unsigned int target_arch
;
931 = preset_target_arch
? preset_target_arch
: arch_sh_up
& ~arch_sh_has_dsp
;
932 valid_arch
= target_arch
;
938 opcode_hash_control
= hash_new ();
940 /* Insert unique names into hash table. */
941 for (opcode
= sh_table
; opcode
->name
; opcode
++)
943 if (strcmp (prev_name
, opcode
->name
) != 0)
945 if (!SH_MERGE_ARCH_SET_VALID (opcode
->arch
, target_arch
))
947 prev_name
= opcode
->name
;
948 hash_insert (opcode_hash_control
, opcode
->name
, (char *) opcode
);
955 static int reg_x
, reg_y
;
959 #define IDENT_CHAR(c) (ISALNUM (c) || (c) == '_')
961 /* Try to parse a reg name. Return the number of chars consumed. */
964 parse_reg_without_prefix (char *src
, int *mode
, int *reg
)
966 char l0
= TOLOWER (src
[0]);
967 char l1
= l0
? TOLOWER (src
[1]) : 0;
969 /* We use ! IDENT_CHAR for the next character after the register name, to
970 make sure that we won't accidentally recognize a symbol name such as
971 'sram' or sr_ram as being a reference to the register 'sr'. */
977 if (src
[2] >= '0' && src
[2] <= '5'
978 && ! IDENT_CHAR ((unsigned char) src
[3]))
981 *reg
= 10 + src
[2] - '0';
985 if (l1
>= '0' && l1
<= '9'
986 && ! IDENT_CHAR ((unsigned char) src
[2]))
992 if (l1
>= '0' && l1
<= '7' && strncasecmp (&src
[2], "_bank", 5) == 0
993 && ! IDENT_CHAR ((unsigned char) src
[7]))
1000 if (l1
== 'e' && ! IDENT_CHAR ((unsigned char) src
[2]))
1005 if (l1
== 's' && ! IDENT_CHAR ((unsigned char) src
[2]))
1016 if (! IDENT_CHAR ((unsigned char) src
[2]))
1022 if (TOLOWER (src
[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src
[3]))
1031 if (! IDENT_CHAR ((unsigned char) src
[2]))
1037 if (TOLOWER (src
[2]) == 'g' && ! IDENT_CHAR ((unsigned char) src
[3]))
1045 if (l1
== 'x' && src
[2] >= '0' && src
[2] <= '1'
1046 && ! IDENT_CHAR ((unsigned char) src
[3]))
1049 *reg
= 4 + (l1
- '0');
1052 if (l1
== 'y' && src
[2] >= '0' && src
[2] <= '1'
1053 && ! IDENT_CHAR ((unsigned char) src
[3]))
1056 *reg
= 6 + (l1
- '0');
1059 if (l1
== 's' && src
[2] >= '0' && src
[2] <= '3'
1060 && ! IDENT_CHAR ((unsigned char) src
[3]))
1065 *reg
= n
| ((~n
& 2) << 1);
1070 if (l0
== 'i' && l1
&& ! IDENT_CHAR ((unsigned char) src
[2]))
1092 if (l0
== 'x' && l1
>= '0' && l1
<= '1'
1093 && ! IDENT_CHAR ((unsigned char) src
[2]))
1096 *reg
= A_X0_NUM
+ l1
- '0';
1100 if (l0
== 'y' && l1
>= '0' && l1
<= '1'
1101 && ! IDENT_CHAR ((unsigned char) src
[2]))
1104 *reg
= A_Y0_NUM
+ l1
- '0';
1108 if (l0
== 'm' && l1
>= '0' && l1
<= '1'
1109 && ! IDENT_CHAR ((unsigned char) src
[2]))
1112 *reg
= l1
== '0' ? A_M0_NUM
: A_M1_NUM
;
1118 && TOLOWER (src
[2]) == 'r' && ! IDENT_CHAR ((unsigned char) src
[3]))
1124 if (l0
== 's' && l1
== 'p' && TOLOWER (src
[2]) == 'c'
1125 && ! IDENT_CHAR ((unsigned char) src
[3]))
1131 if (l0
== 's' && l1
== 'g' && TOLOWER (src
[2]) == 'r'
1132 && ! IDENT_CHAR ((unsigned char) src
[3]))
1138 if (l0
== 'd' && l1
== 's' && TOLOWER (src
[2]) == 'r'
1139 && ! IDENT_CHAR ((unsigned char) src
[3]))
1145 if (l0
== 'd' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1146 && ! IDENT_CHAR ((unsigned char) src
[3]))
1152 if (l0
== 's' && l1
== 'r' && ! IDENT_CHAR ((unsigned char) src
[2]))
1158 if (l0
== 's' && l1
== 'p' && ! IDENT_CHAR ((unsigned char) src
[2]))
1165 if (l0
== 'p' && l1
== 'r' && ! IDENT_CHAR ((unsigned char) src
[2]))
1170 if (l0
== 'p' && l1
== 'c' && ! IDENT_CHAR ((unsigned char) src
[2]))
1172 /* Don't use A_DISP_PC here - that would accept stuff like 'mova pc,r0'
1173 and use an uninitialized immediate. */
1177 if (l0
== 'g' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1178 && ! IDENT_CHAR ((unsigned char) src
[3]))
1183 if (l0
== 'v' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1184 && ! IDENT_CHAR ((unsigned char) src
[3]))
1190 if (l0
== 't' && l1
== 'b' && TOLOWER (src
[2]) == 'r'
1191 && ! IDENT_CHAR ((unsigned char) src
[3]))
1196 if (l0
== 'm' && l1
== 'a' && TOLOWER (src
[2]) == 'c'
1197 && ! IDENT_CHAR ((unsigned char) src
[4]))
1199 if (TOLOWER (src
[3]) == 'l')
1204 if (TOLOWER (src
[3]) == 'h')
1210 if (l0
== 'm' && l1
== 'o' && TOLOWER (src
[2]) == 'd'
1211 && ! IDENT_CHAR ((unsigned char) src
[3]))
1216 if (l0
== 'f' && l1
== 'r')
1220 if (src
[3] >= '0' && src
[3] <= '5'
1221 && ! IDENT_CHAR ((unsigned char) src
[4]))
1224 *reg
= 10 + src
[3] - '0';
1228 if (src
[2] >= '0' && src
[2] <= '9'
1229 && ! IDENT_CHAR ((unsigned char) src
[3]))
1232 *reg
= (src
[2] - '0');
1236 if (l0
== 'd' && l1
== 'r')
1240 if (src
[3] >= '0' && src
[3] <= '4' && ! ((src
[3] - '0') & 1)
1241 && ! IDENT_CHAR ((unsigned char) src
[4]))
1244 *reg
= 10 + src
[3] - '0';
1248 if (src
[2] >= '0' && src
[2] <= '8' && ! ((src
[2] - '0') & 1)
1249 && ! IDENT_CHAR ((unsigned char) src
[3]))
1252 *reg
= (src
[2] - '0');
1256 if (l0
== 'x' && l1
== 'd')
1260 if (src
[3] >= '0' && src
[3] <= '4' && ! ((src
[3] - '0') & 1)
1261 && ! IDENT_CHAR ((unsigned char) src
[4]))
1264 *reg
= 11 + src
[3] - '0';
1268 if (src
[2] >= '0' && src
[2] <= '8' && ! ((src
[2] - '0') & 1)
1269 && ! IDENT_CHAR ((unsigned char) src
[3]))
1272 *reg
= (src
[2] - '0') + 1;
1276 if (l0
== 'f' && l1
== 'v')
1278 if (src
[2] == '1'&& src
[3] == '2' && ! IDENT_CHAR ((unsigned char) src
[4]))
1284 if ((src
[2] == '0' || src
[2] == '4' || src
[2] == '8')
1285 && ! IDENT_CHAR ((unsigned char) src
[3]))
1288 *reg
= (src
[2] - '0');
1292 if (l0
== 'f' && l1
== 'p' && TOLOWER (src
[2]) == 'u'
1293 && TOLOWER (src
[3]) == 'l'
1294 && ! IDENT_CHAR ((unsigned char) src
[4]))
1300 if (l0
== 'f' && l1
== 'p' && TOLOWER (src
[2]) == 's'
1301 && TOLOWER (src
[3]) == 'c'
1302 && TOLOWER (src
[4]) == 'r' && ! IDENT_CHAR ((unsigned char) src
[5]))
1308 if (l0
== 'x' && l1
== 'm' && TOLOWER (src
[2]) == 't'
1309 && TOLOWER (src
[3]) == 'r'
1310 && TOLOWER (src
[4]) == 'x' && ! IDENT_CHAR ((unsigned char) src
[5]))
1319 /* Like parse_reg_without_prefix, but this version supports
1320 $-prefixed register names if enabled by the user. */
1323 parse_reg (char *src
, int *mode
, int *reg
)
1325 unsigned int prefix
;
1326 unsigned int consumed
;
1330 if (allow_dollar_register_prefix
)
1341 consumed
= parse_reg_without_prefix (src
, mode
, reg
);
1346 return consumed
+ prefix
;
1350 parse_exp (char *s
, sh_operand_info
*op
)
1355 save
= input_line_pointer
;
1356 input_line_pointer
= s
;
1357 expression (&op
->immediate
);
1358 if (op
->immediate
.X_op
== O_absent
)
1359 as_bad (_("missing operand"));
1361 else if (op
->immediate
.X_op
== O_PIC_reloc
1362 || sh_PIC_related_p (op
->immediate
.X_add_symbol
)
1363 || sh_PIC_related_p (op
->immediate
.X_op_symbol
))
1364 as_bad (_("misplaced PIC operand"));
1366 new = input_line_pointer
;
1367 input_line_pointer
= save
;
1371 /* The many forms of operand:
1374 @Rn Register indirect
1387 pr, gbr, vbr, macl, mach
1391 parse_at (char *src
, sh_operand_info
*op
)
1398 src
= parse_at (src
, op
);
1399 if (op
->type
== A_DISP_TBR
)
1400 op
->type
= A_DISP2_TBR
;
1402 as_bad (_("illegal double indirection"));
1404 else if (src
[0] == '-')
1406 /* Must be predecrement. */
1409 len
= parse_reg (src
, &mode
, &(op
->reg
));
1410 if (mode
!= A_REG_N
)
1411 as_bad (_("illegal register after @-"));
1416 else if (src
[0] == '(')
1418 /* Could be @(disp, rn), @(disp, gbr), @(disp, pc), @(r0, gbr) or
1421 len
= parse_reg (src
, &mode
, &(op
->reg
));
1422 if (len
&& mode
== A_REG_N
)
1427 as_bad (_("must be @(r0,...)"));
1432 /* Now can be rn or gbr. */
1433 len
= parse_reg (src
, &mode
, &(op
->reg
));
1443 op
->type
= A_R0_GBR
;
1445 else if (mode
== A_REG_N
)
1447 op
->type
= A_IND_R0_REG_N
;
1451 as_bad (_("syntax error in @(r0,...)"));
1456 as_bad (_("syntax error in @(r0...)"));
1461 /* Must be an @(disp,.. thing). */
1462 src
= parse_exp (src
, op
);
1465 /* Now can be rn, gbr or pc. */
1466 len
= parse_reg (src
, &mode
, &op
->reg
);
1469 if (mode
== A_REG_N
)
1471 op
->type
= A_DISP_REG_N
;
1473 else if (mode
== A_GBR
)
1475 op
->type
= A_DISP_GBR
;
1477 else if (mode
== A_TBR
)
1479 op
->type
= A_DISP_TBR
;
1481 else if (mode
== A_PC
)
1483 /* We want @(expr, pc) to uniformly address . + expr,
1484 no matter if expr is a constant, or a more complex
1485 expression, e.g. sym-. or sym1-sym2.
1486 However, we also used to accept @(sym,pc)
1487 as addressing sym, i.e. meaning the same as plain sym.
1488 Some existing code does use the @(sym,pc) syntax, so
1489 we give it the old semantics for now, but warn about
1490 its use, so that users have some time to fix their code.
1492 Note that due to this backward compatibility hack,
1493 we'll get unexpected results when @(offset, pc) is used,
1494 and offset is a symbol that is set later to an an address
1495 difference, or an external symbol that is set to an
1496 address difference in another source file, so we want to
1497 eventually remove it. */
1498 if (op
->immediate
.X_op
== O_symbol
)
1500 op
->type
= A_DISP_PC
;
1501 as_warn (_("Deprecated syntax."));
1505 op
->type
= A_DISP_PC_ABS
;
1506 /* Such operands don't get corrected for PC==.+4, so
1507 make the correction here. */
1508 op
->immediate
.X_add_number
-= 4;
1513 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1518 as_bad (_("syntax error in @(disp,[Rn, gbr, pc])"));
1523 as_bad (_("expecting )"));
1529 src
+= parse_reg (src
, &mode
, &(op
->reg
));
1530 if (mode
!= A_REG_N
)
1531 as_bad (_("illegal register after @"));
1538 l0
= TOLOWER (src
[0]);
1539 l1
= TOLOWER (src
[1]);
1541 if ((l0
== 'r' && l1
== '8')
1542 || (l0
== 'i' && (l1
== 'x' || l1
== 's')))
1545 op
->type
= AX_PMOD_N
;
1547 else if ( (l0
== 'r' && l1
== '9')
1548 || (l0
== 'i' && l1
== 'y'))
1551 op
->type
= AY_PMOD_N
;
1563 get_operand (char **ptr
, sh_operand_info
*op
)
1572 *ptr
= parse_exp (src
, op
);
1577 else if (src
[0] == '@')
1579 *ptr
= parse_at (src
, op
);
1582 len
= parse_reg (src
, &mode
, &(op
->reg
));
1591 /* Not a reg, the only thing left is a displacement. */
1592 *ptr
= parse_exp (src
, op
);
1593 op
->type
= A_DISP_PC
;
1599 get_operands (sh_opcode_info
*info
, char *args
, sh_operand_info
*operand
)
1604 /* The pre-processor will eliminate whitespace in front of '@'
1605 after the first argument; we may be called multiple times
1606 from assemble_ppi, so don't insist on finding whitespace here. */
1610 get_operand (&ptr
, operand
+ 0);
1617 get_operand (&ptr
, operand
+ 1);
1618 /* ??? Hack: psha/pshl have a varying operand number depending on
1619 the type of the first operand. We handle this by having the
1620 three-operand version first and reducing the number of operands
1621 parsed to two if we see that the first operand is an immediate.
1622 This works because no insn with three operands has an immediate
1623 as first operand. */
1624 if (info
->arg
[2] && operand
[0].type
!= A_IMM
)
1630 get_operand (&ptr
, operand
+ 2);
1634 operand
[2].type
= 0;
1639 operand
[1].type
= 0;
1640 operand
[2].type
= 0;
1645 operand
[0].type
= 0;
1646 operand
[1].type
= 0;
1647 operand
[2].type
= 0;
1652 /* Passed a pointer to a list of opcodes which use different
1653 addressing modes, return the opcode which matches the opcodes
1656 static sh_opcode_info
*
1657 get_specific (sh_opcode_info
*opcode
, sh_operand_info
*operands
)
1659 sh_opcode_info
*this_try
= opcode
;
1660 char *name
= opcode
->name
;
1663 while (opcode
->name
)
1665 this_try
= opcode
++;
1666 if ((this_try
->name
!= name
) && (strcmp (this_try
->name
, name
) != 0))
1668 /* We've looked so far down the table that we've run out of
1669 opcodes with the same name. */
1673 /* Look at both operands needed by the opcodes and provided by
1674 the user - since an arg test will often fail on the same arg
1675 again and again, we'll try and test the last failing arg the
1676 first on each opcode try. */
1677 for (n
= 0; this_try
->arg
[n
]; n
++)
1679 sh_operand_info
*user
= operands
+ n
;
1680 sh_arg_type arg
= this_try
->arg
[n
];
1682 if (SH_MERGE_ARCH_SET_VALID (valid_arch
, arch_sh2a_nofpu_up
)
1683 && ( arg
== A_DISP_REG_M
1684 || arg
== A_DISP_REG_N
))
1686 /* Check a few key IMM* fields for overflow. */
1688 long val
= user
->immediate
.X_add_number
;
1690 for (opf
= 0; opf
< 4; opf
++)
1691 switch (this_try
->nibbles
[opf
])
1695 if (val
< 0 || val
> 15)
1700 if (val
< 0 || val
> 15 * 2)
1705 if (val
< 0 || val
> 15 * 4)
1715 if (user
->type
== A_DISP_PC_ABS
)
1726 if (user
->type
!= arg
)
1730 /* opcode needs r0 */
1731 if (user
->type
!= A_REG_N
|| user
->reg
!= 0)
1735 if (user
->type
!= A_R0_GBR
|| user
->reg
!= 0)
1739 if (user
->type
!= F_REG_N
|| user
->reg
!= 0)
1747 case A_IND_R0_REG_N
:
1756 /* Opcode needs rn */
1757 if (user
->type
!= arg
)
1762 if (user
->type
!= D_REG_N
&& user
->type
!= X_REG_N
)
1778 if (user
->type
!= arg
)
1783 if (user
->type
!= arg
)
1789 if (user
->type
!= A_INC_N
)
1791 if (user
->reg
!= 15)
1797 if (user
->type
!= A_DEC_N
)
1799 if (user
->reg
!= 15)
1808 case A_IND_R0_REG_M
:
1811 /* Opcode needs rn */
1812 if (user
->type
!= arg
- A_REG_M
+ A_REG_N
)
1818 if (user
->type
!= A_DEC_N
)
1820 if (user
->reg
< 2 || user
->reg
> 5)
1826 if (user
->type
!= A_INC_N
)
1828 if (user
->reg
< 2 || user
->reg
> 5)
1834 if (user
->type
!= A_IND_N
)
1836 if (user
->reg
< 2 || user
->reg
> 5)
1842 if (user
->type
!= AX_PMOD_N
)
1844 if (user
->reg
< 2 || user
->reg
> 5)
1850 if (user
->type
!= A_INC_N
)
1852 if (user
->reg
< 4 || user
->reg
> 5)
1858 if (user
->type
!= A_IND_N
)
1860 if (user
->reg
< 4 || user
->reg
> 5)
1866 if (user
->type
!= AX_PMOD_N
)
1868 if (user
->reg
< 4 || user
->reg
> 5)
1874 if (user
->type
!= A_INC_N
)
1876 if ((user
->reg
< 4 || user
->reg
> 5)
1877 && (user
->reg
< 0 || user
->reg
> 1))
1883 if (user
->type
!= A_IND_N
)
1885 if ((user
->reg
< 4 || user
->reg
> 5)
1886 && (user
->reg
< 0 || user
->reg
> 1))
1892 if (user
->type
!= AX_PMOD_N
)
1894 if ((user
->reg
< 4 || user
->reg
> 5)
1895 && (user
->reg
< 0 || user
->reg
> 1))
1901 if (user
->type
!= A_INC_N
)
1903 if (user
->reg
< 6 || user
->reg
> 7)
1909 if (user
->type
!= A_IND_N
)
1911 if (user
->reg
< 6 || user
->reg
> 7)
1917 if (user
->type
!= AY_PMOD_N
)
1919 if (user
->reg
< 6 || user
->reg
> 7)
1925 if (user
->type
!= A_INC_N
)
1927 if ((user
->reg
< 6 || user
->reg
> 7)
1928 && (user
->reg
< 2 || user
->reg
> 3))
1934 if (user
->type
!= A_IND_N
)
1936 if ((user
->reg
< 6 || user
->reg
> 7)
1937 && (user
->reg
< 2 || user
->reg
> 3))
1943 if (user
->type
!= AY_PMOD_N
)
1945 if ((user
->reg
< 6 || user
->reg
> 7)
1946 && (user
->reg
< 2 || user
->reg
> 3))
1952 if (user
->type
!= DSP_REG_N
)
1954 if (user
->reg
!= A_A0_NUM
1955 && user
->reg
!= A_A1_NUM
)
1961 if (user
->type
!= DSP_REG_N
)
1983 if (user
->type
!= DSP_REG_N
)
2005 if (user
->type
!= DSP_REG_N
)
2027 if (user
->type
!= DSP_REG_N
)
2049 if (user
->type
!= DSP_REG_N
)
2071 if (user
->type
!= DSP_REG_N
)
2093 if (user
->type
!= DSP_REG_N
)
2115 if (user
->type
!= DSP_REG_N
)
2137 if (user
->type
!= DSP_REG_N
)
2159 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_A0_NUM
)
2163 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_X0_NUM
)
2167 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_X1_NUM
)
2171 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_Y0_NUM
)
2175 if (user
->type
!= DSP_REG_N
|| user
->reg
!= A_Y1_NUM
)
2185 /* Opcode needs rn */
2186 if (user
->type
!= arg
- F_REG_M
+ F_REG_N
)
2191 if (user
->type
!= D_REG_N
&& user
->type
!= X_REG_N
)
2196 if (user
->type
!= XMTRX_M4
)
2202 printf (_("unhandled %d\n"), arg
);
2206 if ( !SH_MERGE_ARCH_SET_VALID (valid_arch
, this_try
->arch
))
2208 valid_arch
= SH_MERGE_ARCH_SET (valid_arch
, this_try
->arch
);
2218 insert (char *where
, int how
, int pcrel
, sh_operand_info
*op
)
2220 fix_new_exp (frag_now
,
2221 where
- frag_now
->fr_literal
,
2229 insert4 (char * where
, int how
, int pcrel
, sh_operand_info
* op
)
2231 fix_new_exp (frag_now
,
2232 where
- frag_now
->fr_literal
,
2239 build_relax (sh_opcode_info
*opcode
, sh_operand_info
*op
)
2241 int high_byte
= target_big_endian
? 0 : 1;
2244 if (opcode
->arg
[0] == A_BDISP8
)
2246 int what
= (opcode
->nibbles
[1] & 4) ? COND_JUMP_DELAY
: COND_JUMP
;
2247 p
= frag_var (rs_machine_dependent
,
2248 md_relax_table
[C (what
, COND32
)].rlx_length
,
2249 md_relax_table
[C (what
, COND8
)].rlx_length
,
2251 op
->immediate
.X_add_symbol
,
2252 op
->immediate
.X_add_number
,
2254 p
[high_byte
] = (opcode
->nibbles
[0] << 4) | (opcode
->nibbles
[1]);
2256 else if (opcode
->arg
[0] == A_BDISP12
)
2258 p
= frag_var (rs_machine_dependent
,
2259 md_relax_table
[C (UNCOND_JUMP
, UNCOND32
)].rlx_length
,
2260 md_relax_table
[C (UNCOND_JUMP
, UNCOND12
)].rlx_length
,
2262 op
->immediate
.X_add_symbol
,
2263 op
->immediate
.X_add_number
,
2265 p
[high_byte
] = (opcode
->nibbles
[0] << 4);
2270 /* Insert ldrs & ldre with fancy relocations that relaxation can recognize. */
2273 insert_loop_bounds (char *output
, sh_operand_info
*operand
)
2278 /* Since the low byte of the opcode will be overwritten by the reloc, we
2279 can just stash the high byte into both bytes and ignore endianness. */
2282 insert (output
, BFD_RELOC_SH_LOOP_START
, 1, operand
);
2283 insert (output
, BFD_RELOC_SH_LOOP_END
, 1, operand
+ 1);
2287 static int count
= 0;
2289 /* If the last loop insn is a two-byte-insn, it is in danger of being
2290 swapped with the insn after it. To prevent this, create a new
2291 symbol - complete with SH_LABEL reloc - after the last loop insn.
2292 If the last loop insn is four bytes long, the symbol will be
2293 right in the middle, but four byte insns are not swapped anyways. */
2294 /* A REPEAT takes 6 bytes. The SH has a 32 bit address space.
2295 Hence a 9 digit number should be enough to count all REPEATs. */
2297 sprintf (name
, "_R%x", count
++ & 0x3fffffff);
2298 end_sym
= symbol_new (name
, undefined_section
, 0, &zero_address_frag
);
2299 /* Make this a local symbol. */
2301 SF_SET_LOCAL (end_sym
);
2302 #endif /* OBJ_COFF */
2303 symbol_table_insert (end_sym
);
2304 end_sym
->sy_value
= operand
[1].immediate
;
2305 end_sym
->sy_value
.X_add_number
+= 2;
2306 fix_new (frag_now
, frag_now_fix (), 2, end_sym
, 0, 1, BFD_RELOC_SH_LABEL
);
2309 output
= frag_more (2);
2312 insert (output
, BFD_RELOC_SH_LOOP_START
, 1, operand
);
2313 insert (output
, BFD_RELOC_SH_LOOP_END
, 1, operand
+ 1);
2315 return frag_more (2);
2318 /* Now we know what sort of opcodes it is, let's build the bytes. */
2321 build_Mytes (sh_opcode_info
*opcode
, sh_operand_info
*operand
)
2326 unsigned int size
= 2;
2327 int low_byte
= target_big_endian
? 1 : 0;
2339 if (SH_MERGE_ARCH_SET (opcode
->arch
, arch_op32
))
2341 output
= frag_more (4);
2346 output
= frag_more (2);
2348 for (index
= 0; index
< max_index
; index
++)
2350 sh_nibble_type i
= opcode
->nibbles
[index
];
2361 nbuf
[index
] = reg_n
;
2364 nbuf
[index
] = reg_m
;
2367 if (reg_n
< 2 || reg_n
> 5)
2368 as_bad (_("Invalid register: 'r%d'"), reg_n
);
2369 nbuf
[index
] = (reg_n
& 3) | 4;
2372 nbuf
[index
] = reg_n
| (reg_m
>> 2);
2375 nbuf
[index
] = reg_b
| 0x08;
2378 nbuf
[index
] = reg_n
| 0x01;
2381 nbuf
[index
] |= 0x08;
2383 insert (output
+ low_byte
, BFD_RELOC_SH_IMM3
, 0, operand
);
2386 nbuf
[index
] |= 0x80;
2388 insert (output
+ low_byte
, BFD_RELOC_SH_IMM3U
, 0, operand
);
2391 insert (output
+ 2, BFD_RELOC_SH_DISP12
, 0, operand
);
2394 insert (output
+ 2, BFD_RELOC_SH_DISP12BY2
, 0, operand
);
2397 insert (output
+ 2, BFD_RELOC_SH_DISP12BY4
, 0, operand
);
2400 insert (output
+ 2, BFD_RELOC_SH_DISP12BY8
, 0, operand
);
2403 insert (output
+ 2, BFD_RELOC_SH_DISP12
, 0, operand
+1);
2406 insert (output
+ 2, BFD_RELOC_SH_DISP12BY2
, 0, operand
+1);
2409 insert (output
+ 2, BFD_RELOC_SH_DISP12BY4
, 0, operand
+1);
2412 insert (output
+ 2, BFD_RELOC_SH_DISP12BY8
, 0, operand
+1);
2417 insert4 (output
, BFD_RELOC_SH_DISP20
, 0, operand
);
2420 insert4 (output
, BFD_RELOC_SH_DISP20BY8
, 0, operand
);
2423 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY4
, 0, operand
);
2426 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY2
, 0, operand
);
2429 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4
, 0, operand
);
2432 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY4
, 0, operand
+ 1);
2435 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4BY2
, 0, operand
+ 1);
2438 insert (output
+ low_byte
, BFD_RELOC_SH_IMM4
, 0, operand
+ 1);
2441 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY4
, 0, operand
);
2444 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY2
, 0, operand
);
2447 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8
, 0, operand
);
2450 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY4
, 0, operand
+ 1);
2453 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8BY2
, 0, operand
+ 1);
2456 insert (output
+ low_byte
, BFD_RELOC_SH_IMM8
, 0, operand
+ 1);
2459 insert (output
, BFD_RELOC_SH_PCRELIMM8BY4
,
2460 operand
->type
!= A_DISP_PC_ABS
, operand
);
2463 insert (output
, BFD_RELOC_SH_PCRELIMM8BY2
,
2464 operand
->type
!= A_DISP_PC_ABS
, operand
);
2467 output
= insert_loop_bounds (output
, operand
);
2468 nbuf
[index
] = opcode
->nibbles
[3];
2472 printf (_("failed for %d\n"), i
);
2476 if (!target_big_endian
)
2478 output
[1] = (nbuf
[0] << 4) | (nbuf
[1]);
2479 output
[0] = (nbuf
[2] << 4) | (nbuf
[3]);
2483 output
[0] = (nbuf
[0] << 4) | (nbuf
[1]);
2484 output
[1] = (nbuf
[2] << 4) | (nbuf
[3]);
2486 if (SH_MERGE_ARCH_SET (opcode
->arch
, arch_op32
))
2488 if (!target_big_endian
)
2490 output
[3] = (nbuf
[4] << 4) | (nbuf
[5]);
2491 output
[2] = (nbuf
[6] << 4) | (nbuf
[7]);
2495 output
[2] = (nbuf
[4] << 4) | (nbuf
[5]);
2496 output
[3] = (nbuf
[6] << 4) | (nbuf
[7]);
2502 /* Find an opcode at the start of *STR_P in the hash table, and set
2503 *STR_P to the first character after the last one read. */
2505 static sh_opcode_info
*
2506 find_cooked_opcode (char **str_p
)
2509 unsigned char *op_start
;
2510 unsigned char *op_end
;
2514 /* Drop leading whitespace. */
2518 /* Find the op code end.
2519 The pre-processor will eliminate whitespace in front of
2520 any '@' after the first argument; we may be called from
2521 assemble_ppi, so the opcode might be terminated by an '@'. */
2522 for (op_start
= op_end
= (unsigned char *) str
;
2525 && !is_end_of_line
[*op_end
] && *op_end
!= ' ' && *op_end
!= '@';
2528 unsigned char c
= op_start
[nlen
];
2530 /* The machine independent code will convert CMP/EQ into cmp/EQ
2531 because it thinks the '/' is the end of the symbol. Moreover,
2532 all but the first sub-insn is a parallel processing insn won't
2533 be capitalized. Instead of hacking up the machine independent
2534 code, we just deal with it here. */
2541 *str_p
= (char *) op_end
;
2544 as_bad (_("can't find opcode "));
2546 return (sh_opcode_info
*) hash_find (opcode_hash_control
, name
);
2549 /* Assemble a parallel processing insn. */
2550 #define DDT_BASE 0xf000 /* Base value for double data transfer insns */
2553 assemble_ppi (char *op_end
, sh_opcode_info
*opcode
)
2565 sh_operand_info operand
[3];
2567 /* Some insn ignore one or more register fields, e.g. psts machl,a0.
2568 Make sure we encode a defined insn pattern. */
2573 if (opcode
->arg
[0] != A_END
)
2574 op_end
= get_operands (opcode
, op_end
, operand
);
2576 opcode
= get_specific (opcode
, operand
);
2579 /* Couldn't find an opcode which matched the operands. */
2580 char *where
= frag_more (2);
2585 as_bad (_("invalid operands for opcode"));
2589 if (opcode
->nibbles
[0] != PPI
)
2590 as_bad (_("insn can't be combined with parallel processing insn"));
2592 switch (opcode
->nibbles
[1])
2597 as_bad (_("multiple movx specifications"));
2602 as_bad (_("multiple movy specifications"));
2608 as_bad (_("multiple movx specifications"));
2609 if ((reg_n
< 4 || reg_n
> 5)
2610 && (reg_n
< 0 || reg_n
> 1))
2611 as_bad (_("invalid movx address register"));
2612 if (movy
&& movy
!= DDT_BASE
)
2613 as_bad (_("insn cannot be combined with non-nopy"));
2614 movx
= ((((reg_n
& 1) != 0) << 9)
2615 + (((reg_n
& 4) == 0) << 8)
2617 + (opcode
->nibbles
[2] << 4)
2618 + opcode
->nibbles
[3]
2624 as_bad (_("multiple movy specifications"));
2625 if ((reg_n
< 6 || reg_n
> 7)
2626 && (reg_n
< 2 || reg_n
> 3))
2627 as_bad (_("invalid movy address register"));
2628 if (movx
&& movx
!= DDT_BASE
)
2629 as_bad (_("insn cannot be combined with non-nopx"));
2630 movy
= ((((reg_n
& 1) != 0) << 8)
2631 + (((reg_n
& 4) == 0) << 9)
2633 + (opcode
->nibbles
[2] << 4)
2634 + opcode
->nibbles
[3]
2640 as_bad (_("multiple movx specifications"));
2642 as_bad (_("previous movy requires nopx"));
2643 if (reg_n
< 4 || reg_n
> 5)
2644 as_bad (_("invalid movx address register"));
2645 if (opcode
->nibbles
[2] & 8)
2647 if (reg_m
== A_A1_NUM
)
2649 else if (reg_m
!= A_A0_NUM
)
2650 as_bad (_("invalid movx dsp register"));
2655 as_bad (_("invalid movx dsp register"));
2658 movx
+= ((reg_n
- 4) << 9) + (opcode
->nibbles
[2] << 2) + DDT_BASE
;
2663 as_bad (_("multiple movy specifications"));
2665 as_bad (_("previous movx requires nopy"));
2666 if (opcode
->nibbles
[2] & 8)
2668 /* Bit 3 in nibbles[2] is intended for bit 4 of the opcode,
2671 if (reg_m
== A_A1_NUM
)
2673 else if (reg_m
!= A_A0_NUM
)
2674 as_bad (_("invalid movy dsp register"));
2679 as_bad (_("invalid movy dsp register"));
2682 if (reg_n
< 6 || reg_n
> 7)
2683 as_bad (_("invalid movy address register"));
2684 movy
+= ((reg_n
- 6) << 8) + opcode
->nibbles
[2] + DDT_BASE
;
2688 if (operand
[0].immediate
.X_op
!= O_constant
)
2689 as_bad (_("dsp immediate shift value not constant"));
2690 field_b
= ((opcode
->nibbles
[2] << 12)
2691 | (operand
[0].immediate
.X_add_number
& 127) << 4
2698 goto try_another_opcode
;
2703 as_bad (_("multiple parallel processing specifications"));
2704 field_b
= ((opcode
->nibbles
[2] << 12) + (opcode
->nibbles
[3] << 8)
2705 + (reg_x
<< 6) + (reg_y
<< 4) + reg_n
);
2706 switch (opcode
->nibbles
[4])
2714 field_b
+= opcode
->nibbles
[4] << 4;
2722 as_bad (_("multiple condition specifications"));
2723 cond
= opcode
->nibbles
[2] << 8;
2725 goto skip_cond_check
;
2729 as_bad (_("multiple parallel processing specifications"));
2730 field_b
= ((opcode
->nibbles
[2] << 12) + (opcode
->nibbles
[3] << 8)
2731 + cond
+ (reg_x
<< 6) + (reg_y
<< 4) + reg_n
);
2733 switch (opcode
->nibbles
[4])
2741 field_b
+= opcode
->nibbles
[4] << 4;
2750 if ((field_b
& 0xef00) == 0xa100)
2752 /* pclr Dz pmuls Se,Sf,Dg */
2753 else if ((field_b
& 0xff00) == 0x8d00
2754 && (SH_MERGE_ARCH_SET_VALID (valid_arch
, arch_sh4al_dsp_up
)))
2756 valid_arch
= SH_MERGE_ARCH_SET (valid_arch
, arch_sh4al_dsp_up
);
2760 as_bad (_("insn cannot be combined with pmuls"));
2761 switch (field_b
& 0xf)
2764 field_b
+= 0 - A_X0_NUM
;
2767 field_b
+= 1 - A_Y0_NUM
;
2770 field_b
+= 2 - A_A0_NUM
;
2773 field_b
+= 3 - A_A1_NUM
;
2776 as_bad (_("bad combined pmuls output operand"));
2778 /* Generate warning if the destination register for padd / psub
2779 and pmuls is the same ( only for A0 or A1 ).
2780 If the last nibble is 1010 then A0 is used in both
2781 padd / psub and pmuls. If it is 1111 then A1 is used
2782 as destination register in both padd / psub and pmuls. */
2784 if ((((field_b
| reg_efg
) & 0x000F) == 0x000A)
2785 || (((field_b
| reg_efg
) & 0x000F) == 0x000F))
2786 as_warn (_("destination register is same for parallel insns"));
2788 field_b
+= 0x4000 + reg_efg
;
2795 as_bad (_("condition not followed by conditionalizable insn"));
2801 opcode
= find_cooked_opcode (&op_end
);
2805 (_("unrecognized characters at end of parallel processing insn")));
2810 move_code
= movx
| movy
;
2813 /* Parallel processing insn. */
2814 unsigned long ppi_code
= (movx
| movy
| 0xf800) << 16 | field_b
;
2816 output
= frag_more (4);
2818 if (! target_big_endian
)
2820 output
[3] = ppi_code
>> 8;
2821 output
[2] = ppi_code
;
2825 output
[2] = ppi_code
>> 8;
2826 output
[3] = ppi_code
;
2828 move_code
|= 0xf800;
2832 /* Just a double data transfer. */
2833 output
= frag_more (2);
2836 if (! target_big_endian
)
2838 output
[1] = move_code
>> 8;
2839 output
[0] = move_code
;
2843 output
[0] = move_code
>> 8;
2844 output
[1] = move_code
;
2849 /* This is the guts of the machine-dependent assembler. STR points to a
2850 machine dependent instruction. This function is supposed to emit
2851 the frags/bytes it assembles to. */
2854 md_assemble (char *str
)
2857 sh_operand_info operand
[3];
2858 sh_opcode_info
*opcode
;
2859 unsigned int size
= 0;
2860 char *initial_str
= str
;
2863 if (sh64_isa_mode
== sh64_isa_shmedia
)
2865 shmedia_md_assemble (str
);
2870 /* If we've seen pseudo-directives, make sure any emitted data or
2871 frags are marked as data. */
2874 sh64_update_contents_mark (TRUE
);
2875 sh64_set_contents_type (CRT_SH5_ISA16
);
2880 #endif /* HAVE_SH64 */
2882 opcode
= find_cooked_opcode (&str
);
2887 /* The opcode is not in the hash table.
2888 This means we definitely have an assembly failure,
2889 but the instruction may be valid in another CPU variant.
2890 In this case emit something better than 'unknown opcode'.
2891 Search the full table in sh-opc.h to check. */
2893 char *name
= initial_str
;
2894 int name_length
= 0;
2895 const sh_opcode_info
*op
;
2898 /* identify opcode in string */
2899 while (ISSPACE (*name
))
2903 while (!ISSPACE (name
[name_length
]))
2908 /* search for opcode in full list */
2909 for (op
= sh_table
; op
->name
; op
++)
2911 if (strncasecmp (op
->name
, name
, name_length
) == 0
2912 && op
->name
[name_length
] == '\0')
2921 as_bad (_("opcode not valid for this cpu variant"));
2925 as_bad (_("unknown opcode"));
2931 && ! seg_info (now_seg
)->tc_segment_info_data
.in_code
)
2933 /* Output a CODE reloc to tell the linker that the following
2934 bytes are instructions, not data. */
2935 fix_new (frag_now
, frag_now_fix (), 2, &abs_symbol
, 0, 0,
2937 seg_info (now_seg
)->tc_segment_info_data
.in_code
= 1;
2940 if (opcode
->nibbles
[0] == PPI
)
2942 size
= assemble_ppi (op_end
, opcode
);
2946 if (opcode
->arg
[0] == A_BDISP12
2947 || opcode
->arg
[0] == A_BDISP8
)
2949 /* Since we skip get_specific here, we have to check & update
2951 if (SH_MERGE_ARCH_SET_VALID (valid_arch
, opcode
->arch
))
2952 valid_arch
= SH_MERGE_ARCH_SET (valid_arch
, opcode
->arch
);
2954 as_bad (_("Delayed branches not available on SH1"));
2955 parse_exp (op_end
+ 1, &operand
[0]);
2956 build_relax (opcode
, &operand
[0]);
2958 /* All branches are currently 16 bit. */
2963 if (opcode
->arg
[0] == A_END
)
2965 /* Ignore trailing whitespace. If there is any, it has already
2966 been compressed to a single space. */
2972 op_end
= get_operands (opcode
, op_end
, operand
);
2974 opcode
= get_specific (opcode
, operand
);
2978 /* Couldn't find an opcode which matched the operands. */
2979 char *where
= frag_more (2);
2984 as_bad (_("invalid operands for opcode"));
2989 as_bad (_("excess operands: '%s'"), op_end
);
2991 size
= build_Mytes (opcode
, operand
);
2996 dwarf2_emit_insn (size
);
2999 /* This routine is called each time a label definition is seen. It
3000 emits a BFD_RELOC_SH_LABEL reloc if necessary. */
3003 sh_frob_label (symbolS
*sym
)
3005 static fragS
*last_label_frag
;
3006 static int last_label_offset
;
3009 && seg_info (now_seg
)->tc_segment_info_data
.in_code
)
3013 offset
= frag_now_fix ();
3014 if (frag_now
!= last_label_frag
3015 || offset
!= last_label_offset
)
3017 fix_new (frag_now
, offset
, 2, &abs_symbol
, 0, 0, BFD_RELOC_SH_LABEL
);
3018 last_label_frag
= frag_now
;
3019 last_label_offset
= offset
;
3023 dwarf2_emit_label (sym
);
3026 /* This routine is called when the assembler is about to output some
3027 data. It emits a BFD_RELOC_SH_DATA reloc if necessary. */
3030 sh_flush_pending_output (void)
3033 && seg_info (now_seg
)->tc_segment_info_data
.in_code
)
3035 fix_new (frag_now
, frag_now_fix (), 2, &abs_symbol
, 0, 0,
3037 seg_info (now_seg
)->tc_segment_info_data
.in_code
= 0;
3042 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
3047 /* Various routines to kill one day. */
3050 md_atof (int type
, char *litP
, int *sizeP
)
3052 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
3055 /* Handle the .uses pseudo-op. This pseudo-op is used just before a
3056 call instruction. It refers to a label of the instruction which
3057 loads the register which the call uses. We use it to generate a
3058 special reloc for the linker. */
3061 s_uses (int ignore ATTRIBUTE_UNUSED
)
3066 as_warn (_(".uses pseudo-op seen when not relaxing"));
3070 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
3072 as_bad (_("bad .uses format"));
3073 ignore_rest_of_line ();
3077 fix_new_exp (frag_now
, frag_now_fix (), 2, &ex
, 1, BFD_RELOC_SH_USES
);
3079 demand_empty_rest_of_line ();
3084 OPTION_RELAX
= OPTION_MD_BASE
,
3091 OPTION_ALLOW_REG_PREFIX
,
3095 OPTION_SHCOMPACT_CONST_CRANGE
,
3099 OPTION_DUMMY
/* Not used. This is just here to make it easy to add and subtract options from this enum. */
3102 const char *md_shortopts
= "";
3103 struct option md_longopts
[] =
3105 {"relax", no_argument
, NULL
, OPTION_RELAX
},
3106 {"big", no_argument
, NULL
, OPTION_BIG
},
3107 {"little", no_argument
, NULL
, OPTION_LITTLE
},
3108 /* The next two switches are here because the
3109 generic parts of the linker testsuite uses them. */
3110 {"EB", no_argument
, NULL
, OPTION_BIG
},
3111 {"EL", no_argument
, NULL
, OPTION_LITTLE
},
3112 {"small", no_argument
, NULL
, OPTION_SMALL
},
3113 {"dsp", no_argument
, NULL
, OPTION_DSP
},
3114 {"isa", required_argument
, NULL
, OPTION_ISA
},
3115 {"renesas", no_argument
, NULL
, OPTION_RENESAS
},
3116 {"allow-reg-prefix", no_argument
, NULL
, OPTION_ALLOW_REG_PREFIX
},
3119 {"abi", required_argument
, NULL
, OPTION_ABI
},
3120 {"no-mix", no_argument
, NULL
, OPTION_NO_MIX
},
3121 {"shcompact-const-crange", no_argument
, NULL
, OPTION_SHCOMPACT_CONST_CRANGE
},
3122 {"no-expand", no_argument
, NULL
, OPTION_NO_EXPAND
},
3123 {"expand-pt32", no_argument
, NULL
, OPTION_PT32
},
3124 #endif /* HAVE_SH64 */
3126 {NULL
, no_argument
, NULL
, 0}
3128 size_t md_longopts_size
= sizeof (md_longopts
);
3131 md_parse_option (int c
, char *arg ATTRIBUTE_UNUSED
)
3140 target_big_endian
= 1;
3144 target_big_endian
= 0;
3152 preset_target_arch
= arch_sh_up
& ~(arch_sh_sp_fpu
|arch_sh_dp_fpu
);
3155 case OPTION_RENESAS
:
3156 dont_adjust_reloc_32
= 1;
3159 case OPTION_ALLOW_REG_PREFIX
:
3160 allow_dollar_register_prefix
= 1;
3164 if (strcasecmp (arg
, "dsp") == 0)
3165 preset_target_arch
= arch_sh_up
& ~(arch_sh_sp_fpu
|arch_sh_dp_fpu
);
3166 else if (strcasecmp (arg
, "fp") == 0)
3167 preset_target_arch
= arch_sh_up
& ~arch_sh_has_dsp
;
3168 else if (strcasecmp (arg
, "any") == 0)
3169 preset_target_arch
= arch_sh_up
;
3171 else if (strcasecmp (arg
, "shmedia") == 0)
3173 if (sh64_isa_mode
== sh64_isa_shcompact
)
3174 as_bad (_("Invalid combination: --isa=SHcompact with --isa=SHmedia"));
3175 sh64_isa_mode
= sh64_isa_shmedia
;
3177 else if (strcasecmp (arg
, "shcompact") == 0)
3179 if (sh64_isa_mode
== sh64_isa_shmedia
)
3180 as_bad (_("Invalid combination: --isa=SHmedia with --isa=SHcompact"));
3181 if (sh64_abi
== sh64_abi_64
)
3182 as_bad (_("Invalid combination: --abi=64 with --isa=SHcompact"));
3183 sh64_isa_mode
= sh64_isa_shcompact
;
3185 #endif /* HAVE_SH64 */
3188 extern const bfd_arch_info_type bfd_sh_arch
;
3189 bfd_arch_info_type
const *bfd_arch
= &bfd_sh_arch
;
3191 preset_target_arch
= 0;
3192 for (; bfd_arch
; bfd_arch
=bfd_arch
->next
)
3194 int len
= strlen(bfd_arch
->printable_name
);
3196 if (bfd_arch
->mach
== bfd_mach_sh5
)
3199 if (strncasecmp (bfd_arch
->printable_name
, arg
, len
) != 0)
3202 if (arg
[len
] == '\0')
3203 preset_target_arch
=
3204 sh_get_arch_from_bfd_mach (bfd_arch
->mach
);
3205 else if (strcasecmp(&arg
[len
], "-up") == 0)
3206 preset_target_arch
=
3207 sh_get_arch_up_from_bfd_mach (bfd_arch
->mach
);
3213 if (!preset_target_arch
)
3214 as_bad ("Invalid argument to --isa option: %s", arg
);
3220 if (strcmp (arg
, "32") == 0)
3222 if (sh64_abi
== sh64_abi_64
)
3223 as_bad (_("Invalid combination: --abi=32 with --abi=64"));
3224 sh64_abi
= sh64_abi_32
;
3226 else if (strcmp (arg
, "64") == 0)
3228 if (sh64_abi
== sh64_abi_32
)
3229 as_bad (_("Invalid combination: --abi=64 with --abi=32"));
3230 if (sh64_isa_mode
== sh64_isa_shcompact
)
3231 as_bad (_("Invalid combination: --isa=SHcompact with --abi=64"));
3232 sh64_abi
= sh64_abi_64
;
3235 as_bad ("Invalid argument to --abi option: %s", arg
);
3242 case OPTION_SHCOMPACT_CONST_CRANGE
:
3243 sh64_shcompact_const_crange
= TRUE
;
3246 case OPTION_NO_EXPAND
:
3247 sh64_expand
= FALSE
;
3253 #endif /* HAVE_SH64 */
3263 md_show_usage (FILE *stream
)
3265 fprintf (stream
, _("\
3267 --little generate little endian code\n\
3268 --big generate big endian code\n\
3269 --relax alter jump instructions for long displacements\n\
3270 --renesas disable optimization with section symbol for\n\
3271 compatibility with Renesas assembler.\n\
3272 --small align sections to 4 byte boundaries, not 16\n\
3273 --dsp enable sh-dsp insns, and disable floating-point ISAs.\n\
3274 --allow-reg-prefix allow '$' as a register name prefix.\n\
3275 --isa=[any use most appropriate isa\n\
3276 | dsp same as '-dsp'\n\
3279 extern const bfd_arch_info_type bfd_sh_arch
;
3280 bfd_arch_info_type
const *bfd_arch
= &bfd_sh_arch
;
3282 for (; bfd_arch
; bfd_arch
=bfd_arch
->next
)
3283 if (bfd_arch
->mach
!= bfd_mach_sh5
)
3285 fprintf (stream
, "\n | %s", bfd_arch
->printable_name
);
3286 fprintf (stream
, "\n | %s-up", bfd_arch
->printable_name
);
3289 fprintf (stream
, "]\n");
3291 fprintf (stream
, _("\
3292 --isa=[shmedia set as the default instruction set for SH64\n\
3296 fprintf (stream
, _("\
3297 --abi=[32|64] set size of expanded SHmedia operands and object\n\
3299 --shcompact-const-crange emit code-range descriptors for constants in\n\
3300 SHcompact code sections\n\
3301 --no-mix disallow SHmedia code in the same section as\n\
3302 constants and SHcompact code\n\
3303 --no-expand do not expand MOVI, PT, PTA or PTB instructions\n\
3304 --expand-pt32 with -abi=64, expand PT, PTA and PTB instructions\n\
3305 to 32 bits only\n"));
3306 #endif /* HAVE_SH64 */
3309 /* This struct is used to pass arguments to sh_count_relocs through
3310 bfd_map_over_sections. */
3312 struct sh_count_relocs
3314 /* Symbol we are looking for. */
3316 /* Count of relocs found. */
3320 /* Count the number of fixups in a section which refer to a particular
3321 symbol. This is called via bfd_map_over_sections. */
3324 sh_count_relocs (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
, void *data
)
3326 struct sh_count_relocs
*info
= (struct sh_count_relocs
*) data
;
3327 segment_info_type
*seginfo
;
3331 seginfo
= seg_info (sec
);
3332 if (seginfo
== NULL
)
3336 for (fix
= seginfo
->fix_root
; fix
!= NULL
; fix
= fix
->fx_next
)
3338 if (fix
->fx_addsy
== sym
)
3346 /* Handle the count relocs for a particular section.
3347 This is called via bfd_map_over_sections. */
3350 sh_frob_section (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
,
3351 void *ignore ATTRIBUTE_UNUSED
)
3353 segment_info_type
*seginfo
;
3356 seginfo
= seg_info (sec
);
3357 if (seginfo
== NULL
)
3360 for (fix
= seginfo
->fix_root
; fix
!= NULL
; fix
= fix
->fx_next
)
3364 sym
= fix
->fx_addsy
;
3365 /* Check for a local_symbol. */
3366 if (sym
&& sym
->bsym
== NULL
)
3368 struct local_symbol
*ls
= (struct local_symbol
*)sym
;
3369 /* See if it's been converted. If so, canonicalize. */
3370 if (local_symbol_converted_p (ls
))
3371 fix
->fx_addsy
= local_symbol_get_real_symbol (ls
);
3375 for (fix
= seginfo
->fix_root
; fix
!= NULL
; fix
= fix
->fx_next
)
3380 struct sh_count_relocs info
;
3382 if (fix
->fx_r_type
!= BFD_RELOC_SH_USES
)
3385 /* The BFD_RELOC_SH_USES reloc should refer to a defined local
3386 symbol in the same section. */
3387 sym
= fix
->fx_addsy
;
3389 || fix
->fx_subsy
!= NULL
3390 || fix
->fx_addnumber
!= 0
3391 || S_GET_SEGMENT (sym
) != sec
3392 || S_IS_EXTERNAL (sym
))
3394 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3395 _(".uses does not refer to a local symbol in the same section"));
3399 /* Look through the fixups again, this time looking for one
3400 at the same location as sym. */
3401 val
= S_GET_VALUE (sym
);
3402 for (fscan
= seginfo
->fix_root
;
3404 fscan
= fscan
->fx_next
)
3405 if (val
== fscan
->fx_frag
->fr_address
+ fscan
->fx_where
3406 && fscan
->fx_r_type
!= BFD_RELOC_SH_ALIGN
3407 && fscan
->fx_r_type
!= BFD_RELOC_SH_CODE
3408 && fscan
->fx_r_type
!= BFD_RELOC_SH_DATA
3409 && fscan
->fx_r_type
!= BFD_RELOC_SH_LABEL
)
3413 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3414 _("can't find fixup pointed to by .uses"));
3418 if (fscan
->fx_tcbit
)
3420 /* We've already done this one. */
3424 /* The variable fscan should also be a fixup to a local symbol
3425 in the same section. */
3426 sym
= fscan
->fx_addsy
;
3428 || fscan
->fx_subsy
!= NULL
3429 || fscan
->fx_addnumber
!= 0
3430 || S_GET_SEGMENT (sym
) != sec
3431 || S_IS_EXTERNAL (sym
))
3433 as_warn_where (fix
->fx_file
, fix
->fx_line
,
3434 _(".uses target does not refer to a local symbol in the same section"));
3438 /* Now we look through all the fixups of all the sections,
3439 counting the number of times we find a reference to sym. */
3442 bfd_map_over_sections (stdoutput
, sh_count_relocs
, &info
);
3447 /* Generate a BFD_RELOC_SH_COUNT fixup at the location of sym.
3448 We have already adjusted the value of sym to include the
3449 fragment address, so we undo that adjustment here. */
3450 subseg_change (sec
, 0);
3451 fix_new (fscan
->fx_frag
,
3452 S_GET_VALUE (sym
) - fscan
->fx_frag
->fr_address
,
3453 4, &abs_symbol
, info
.count
, 0, BFD_RELOC_SH_COUNT
);
3457 /* This function is called after the symbol table has been completed,
3458 but before the relocs or section contents have been written out.
3459 If we have seen any .uses pseudo-ops, they point to an instruction
3460 which loads a register with the address of a function. We look
3461 through the fixups to find where the function address is being
3462 loaded from. We then generate a COUNT reloc giving the number of
3463 times that function address is referred to. The linker uses this
3464 information when doing relaxing, to decide when it can eliminate
3465 the stored function address entirely. */
3471 shmedia_frob_file_before_adjust ();
3477 bfd_map_over_sections (stdoutput
, sh_frob_section
, NULL
);
3480 /* Called after relaxing. Set the correct sizes of the fragments, and
3481 create relocs so that md_apply_fix will fill in the correct values. */
3484 md_convert_frag (bfd
*headers ATTRIBUTE_UNUSED
, segT seg
, fragS
*fragP
)
3488 switch (fragP
->fr_subtype
)
3490 case C (COND_JUMP
, COND8
):
3491 case C (COND_JUMP_DELAY
, COND8
):
3492 subseg_change (seg
, 0);
3493 fix_new (fragP
, fragP
->fr_fix
, 2, fragP
->fr_symbol
, fragP
->fr_offset
,
3494 1, BFD_RELOC_SH_PCDISP8BY2
);
3499 case C (UNCOND_JUMP
, UNCOND12
):
3500 subseg_change (seg
, 0);
3501 fix_new (fragP
, fragP
->fr_fix
, 2, fragP
->fr_symbol
, fragP
->fr_offset
,
3502 1, BFD_RELOC_SH_PCDISP12BY2
);
3507 case C (UNCOND_JUMP
, UNCOND32
):
3508 case C (UNCOND_JUMP
, UNDEF_WORD_DISP
):
3509 if (fragP
->fr_symbol
== NULL
)
3510 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3511 _("displacement overflows 12-bit field"));
3512 else if (S_IS_DEFINED (fragP
->fr_symbol
))
3513 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3514 _("displacement to defined symbol %s overflows 12-bit field"),
3515 S_GET_NAME (fragP
->fr_symbol
));
3517 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3518 _("displacement to undefined symbol %s overflows 12-bit field"),
3519 S_GET_NAME (fragP
->fr_symbol
));
3520 /* Stabilize this frag, so we don't trip an assert. */
3521 fragP
->fr_fix
+= fragP
->fr_var
;
3525 case C (COND_JUMP
, COND12
):
3526 case C (COND_JUMP_DELAY
, COND12
):
3527 /* A bcond won't fit, so turn it into a b!cond; bra disp; nop. */
3528 /* I found that a relax failure for gcc.c-torture/execute/930628-1.c
3529 was due to gas incorrectly relaxing an out-of-range conditional
3530 branch with delay slot. It turned:
3531 bf.s L6 (slot mov.l r12,@(44,r0))
3534 2c: 8f 01 a0 8b bf.s 32 <_main+32> (slot bra L6)
3536 32: 10 cb mov.l r12,@(44,r0)
3537 Therefore, branches with delay slots have to be handled
3538 differently from ones without delay slots. */
3540 unsigned char *buffer
=
3541 (unsigned char *) (fragP
->fr_fix
+ fragP
->fr_literal
);
3542 int highbyte
= target_big_endian
? 0 : 1;
3543 int lowbyte
= target_big_endian
? 1 : 0;
3544 int delay
= fragP
->fr_subtype
== C (COND_JUMP_DELAY
, COND12
);
3546 /* Toggle the true/false bit of the bcond. */
3547 buffer
[highbyte
] ^= 0x2;
3549 /* If this is a delayed branch, we may not put the bra in the
3550 slot. So we change it to a non-delayed branch, like that:
3551 b! cond slot_label; bra disp; slot_label: slot_insn
3552 ??? We should try if swapping the conditional branch and
3553 its delay-slot insn already makes the branch reach. */
3555 /* Build a relocation to six / four bytes farther on. */
3556 subseg_change (seg
, 0);
3557 fix_new (fragP
, fragP
->fr_fix
, 2, section_symbol (seg
),
3558 fragP
->fr_address
+ fragP
->fr_fix
+ (delay
? 4 : 6),
3559 1, BFD_RELOC_SH_PCDISP8BY2
);
3561 /* Set up a jump instruction. */
3562 buffer
[highbyte
+ 2] = 0xa0;
3563 buffer
[lowbyte
+ 2] = 0;
3564 fix_new (fragP
, fragP
->fr_fix
+ 2, 2, fragP
->fr_symbol
,
3565 fragP
->fr_offset
, 1, BFD_RELOC_SH_PCDISP12BY2
);
3569 buffer
[highbyte
] &= ~0x4; /* Removes delay slot from branch. */
3574 /* Fill in a NOP instruction. */
3575 buffer
[highbyte
+ 4] = 0x0;
3576 buffer
[lowbyte
+ 4] = 0x9;
3585 case C (COND_JUMP
, COND32
):
3586 case C (COND_JUMP_DELAY
, COND32
):
3587 case C (COND_JUMP
, UNDEF_WORD_DISP
):
3588 case C (COND_JUMP_DELAY
, UNDEF_WORD_DISP
):
3589 if (fragP
->fr_symbol
== NULL
)
3590 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3591 _("displacement overflows 8-bit field"));
3592 else if (S_IS_DEFINED (fragP
->fr_symbol
))
3593 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3594 _("displacement to defined symbol %s overflows 8-bit field"),
3595 S_GET_NAME (fragP
->fr_symbol
));
3597 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
3598 _("displacement to undefined symbol %s overflows 8-bit field "),
3599 S_GET_NAME (fragP
->fr_symbol
));
3600 /* Stabilize this frag, so we don't trip an assert. */
3601 fragP
->fr_fix
+= fragP
->fr_var
;
3607 shmedia_md_convert_frag (headers
, seg
, fragP
, TRUE
);
3613 if (donerelax
&& !sh_relax
)
3614 as_warn_where (fragP
->fr_file
, fragP
->fr_line
,
3615 _("overflow in branch to %s; converted into longer instruction sequence"),
3616 (fragP
->fr_symbol
!= NULL
3617 ? S_GET_NAME (fragP
->fr_symbol
)
3622 md_section_align (segT seg ATTRIBUTE_UNUSED
, valueT size
)
3626 #else /* ! OBJ_ELF */
3627 return ((size
+ (1 << bfd_get_section_alignment (stdoutput
, seg
)) - 1)
3628 & (-1 << bfd_get_section_alignment (stdoutput
, seg
)));
3629 #endif /* ! OBJ_ELF */
3632 /* This static variable is set by s_uacons to tell sh_cons_align that
3633 the expression does not need to be aligned. */
3635 static int sh_no_align_cons
= 0;
3637 /* This handles the unaligned space allocation pseudo-ops, such as
3638 .uaword. .uaword is just like .word, but the value does not need
3642 s_uacons (int bytes
)
3644 /* Tell sh_cons_align not to align this value. */
3645 sh_no_align_cons
= 1;
3649 /* If a .word, et. al., pseud-op is seen, warn if the value is not
3650 aligned correctly. Note that this can cause warnings to be issued
3651 when assembling initialized structured which were declared with the
3652 packed attribute. FIXME: Perhaps we should require an option to
3653 enable this warning? */
3656 sh_cons_align (int nbytes
)
3661 if (sh_no_align_cons
)
3663 /* This is an unaligned pseudo-op. */
3664 sh_no_align_cons
= 0;
3669 while ((nbytes
& 1) == 0)
3678 if (now_seg
== absolute_section
)
3680 if ((abs_section_offset
& ((1 << nalign
) - 1)) != 0)
3681 as_warn (_("misaligned data"));
3685 p
= frag_var (rs_align_test
, 1, 1, (relax_substateT
) 0,
3686 (symbolS
*) NULL
, (offsetT
) nalign
, (char *) NULL
);
3688 record_alignment (now_seg
, nalign
);
3691 /* When relaxing, we need to output a reloc for any .align directive
3692 that requests alignment to a four byte boundary or larger. This is
3693 also where we check for misaligned data. */
3696 sh_handle_align (fragS
*frag
)
3698 int bytes
= frag
->fr_next
->fr_address
- frag
->fr_address
- frag
->fr_fix
;
3700 if (frag
->fr_type
== rs_align_code
)
3702 static const unsigned char big_nop_pattern
[] = { 0x00, 0x09 };
3703 static const unsigned char little_nop_pattern
[] = { 0x09, 0x00 };
3705 char *p
= frag
->fr_literal
+ frag
->fr_fix
;
3714 if (target_big_endian
)
3716 memcpy (p
, big_nop_pattern
, sizeof big_nop_pattern
);
3717 frag
->fr_var
= sizeof big_nop_pattern
;
3721 memcpy (p
, little_nop_pattern
, sizeof little_nop_pattern
);
3722 frag
->fr_var
= sizeof little_nop_pattern
;
3725 else if (frag
->fr_type
== rs_align_test
)
3728 as_bad_where (frag
->fr_file
, frag
->fr_line
, _("misaligned data"));
3732 && (frag
->fr_type
== rs_align
3733 || frag
->fr_type
== rs_align_code
)
3734 && frag
->fr_address
+ frag
->fr_fix
> 0
3735 && frag
->fr_offset
> 1
3736 && now_seg
!= bss_section
)
3737 fix_new (frag
, frag
->fr_fix
, 2, &abs_symbol
, frag
->fr_offset
, 0,
3738 BFD_RELOC_SH_ALIGN
);
3741 /* See whether the relocation should be resolved locally. */
3744 sh_local_pcrel (fixS
*fix
)
3747 && (fix
->fx_r_type
== BFD_RELOC_SH_PCDISP8BY2
3748 || fix
->fx_r_type
== BFD_RELOC_SH_PCDISP12BY2
3749 || fix
->fx_r_type
== BFD_RELOC_SH_PCRELIMM8BY2
3750 || fix
->fx_r_type
== BFD_RELOC_SH_PCRELIMM8BY4
3751 || fix
->fx_r_type
== BFD_RELOC_8_PCREL
3752 || fix
->fx_r_type
== BFD_RELOC_SH_SWITCH16
3753 || fix
->fx_r_type
== BFD_RELOC_SH_SWITCH32
));
3756 /* See whether we need to force a relocation into the output file.
3757 This is used to force out switch and PC relative relocations when
3761 sh_force_relocation (fixS
*fix
)
3763 /* These relocations can't make it into a DSO, so no use forcing
3764 them for global symbols. */
3765 if (sh_local_pcrel (fix
))
3768 /* Make sure some relocations get emitted. */
3769 if (fix
->fx_r_type
== BFD_RELOC_SH_LOOP_START
3770 || fix
->fx_r_type
== BFD_RELOC_SH_LOOP_END
3771 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_GD_32
3772 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LD_32
3773 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_IE_32
3774 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LDO_32
3775 || fix
->fx_r_type
== BFD_RELOC_SH_TLS_LE_32
3776 || generic_force_reloc (fix
))
3782 return (fix
->fx_pcrel
3783 || SWITCH_TABLE (fix
)
3784 || fix
->fx_r_type
== BFD_RELOC_SH_COUNT
3785 || fix
->fx_r_type
== BFD_RELOC_SH_ALIGN
3786 || fix
->fx_r_type
== BFD_RELOC_SH_CODE
3787 || fix
->fx_r_type
== BFD_RELOC_SH_DATA
3789 || fix
->fx_r_type
== BFD_RELOC_SH_SHMEDIA_CODE
3791 || fix
->fx_r_type
== BFD_RELOC_SH_LABEL
);
3796 sh_fix_adjustable (fixS
*fixP
)
3798 if (fixP
->fx_r_type
== BFD_RELOC_32_PLT_PCREL
3799 || fixP
->fx_r_type
== BFD_RELOC_32_GOT_PCREL
3800 || fixP
->fx_r_type
== BFD_RELOC_SH_GOTPC
3801 || ((fixP
->fx_r_type
== BFD_RELOC_32
) && dont_adjust_reloc_32
)
3802 || fixP
->fx_r_type
== BFD_RELOC_RVA
)
3805 /* We need the symbol name for the VTABLE entries */
3806 if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
3807 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
3814 sh_elf_final_processing (void)
3818 /* Set file-specific flags to indicate if this code needs
3819 a processor with the sh-dsp / sh2e ISA to execute. */
3821 /* SH5 and above don't know about the valid_arch arch_sh* bits defined
3822 in sh-opc.h, so check SH64 mode before checking valid_arch. */
3823 if (sh64_isa_mode
!= sh64_isa_unspecified
)
3826 #elif defined TARGET_SYMBIAN
3829 extern int sh_symbian_find_elf_flags (unsigned int);
3831 val
= sh_symbian_find_elf_flags (valid_arch
);
3834 #endif /* HAVE_SH64 */
3835 val
= sh_find_elf_flags (valid_arch
);
3837 elf_elfheader (stdoutput
)->e_flags
&= ~EF_SH_MACH_MASK
;
3838 elf_elfheader (stdoutput
)->e_flags
|= val
;
3842 /* Apply fixup FIXP to SIZE-byte field BUF given that VAL is its
3843 assembly-time value. If we're generating a reloc for FIXP,
3844 see whether the addend should be stored in-place or whether
3845 it should be in an ELF r_addend field. */
3848 apply_full_field_fix (fixS
*fixP
, char *buf
, bfd_vma val
, int size
)
3850 reloc_howto_type
*howto
;
3852 if (fixP
->fx_addsy
!= NULL
|| fixP
->fx_pcrel
)
3854 howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
3855 if (howto
&& !howto
->partial_inplace
)
3857 fixP
->fx_addnumber
= val
;
3861 md_number_to_chars (buf
, val
, size
);
3864 /* Apply a fixup to the object file. */
3867 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
3869 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
3870 int lowbyte
= target_big_endian
? 1 : 0;
3871 int highbyte
= target_big_endian
? 0 : 1;
3872 long val
= (long) *valP
;
3876 /* A difference between two symbols, the second of which is in the
3877 current section, is transformed in a PC-relative relocation to
3878 the other symbol. We have to adjust the relocation type here. */
3881 switch (fixP
->fx_r_type
)
3887 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
3890 /* Currently, we only support 32-bit PCREL relocations.
3891 We'd need a new reloc type to handle 16_PCREL, and
3892 8_PCREL is already taken for R_SH_SWITCH8, which
3893 apparently does something completely different than what
3896 bfd_set_error (bfd_error_bad_value
);
3900 bfd_set_error (bfd_error_bad_value
);
3905 /* The function adjust_reloc_syms won't convert a reloc against a weak
3906 symbol into a reloc against a section, but bfd_install_relocation
3907 will screw up if the symbol is defined, so we have to adjust val here
3908 to avoid the screw up later.
3910 For ordinary relocs, this does not happen for ELF, since for ELF,
3911 bfd_install_relocation uses the "special function" field of the
3912 howto, and does not execute the code that needs to be undone, as long
3913 as the special function does not return bfd_reloc_continue.
3914 It can happen for GOT- and PLT-type relocs the way they are
3915 described in elf32-sh.c as they use bfd_elf_generic_reloc, but it
3916 doesn't matter here since those relocs don't use VAL; see below. */
3917 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
3918 && fixP
->fx_addsy
!= NULL
3919 && S_IS_WEAK (fixP
->fx_addsy
))
3920 val
-= S_GET_VALUE (fixP
->fx_addsy
);
3922 if (SWITCH_TABLE (fixP
))
3923 val
-= S_GET_VALUE (fixP
->fx_subsy
);
3927 switch (fixP
->fx_r_type
)
3929 case BFD_RELOC_SH_IMM3
:
3931 * buf
= (* buf
& 0xf8) | (val
& 0x7);
3933 case BFD_RELOC_SH_IMM3U
:
3935 * buf
= (* buf
& 0x8f) | ((val
& 0x7) << 4);
3937 case BFD_RELOC_SH_DISP12
:
3939 buf
[lowbyte
] = val
& 0xff;
3940 buf
[highbyte
] |= (val
>> 8) & 0x0f;
3942 case BFD_RELOC_SH_DISP12BY2
:
3945 buf
[lowbyte
] = (val
>> 1) & 0xff;
3946 buf
[highbyte
] |= (val
>> 9) & 0x0f;
3948 case BFD_RELOC_SH_DISP12BY4
:
3951 buf
[lowbyte
] = (val
>> 2) & 0xff;
3952 buf
[highbyte
] |= (val
>> 10) & 0x0f;
3954 case BFD_RELOC_SH_DISP12BY8
:
3957 buf
[lowbyte
] = (val
>> 3) & 0xff;
3958 buf
[highbyte
] |= (val
>> 11) & 0x0f;
3960 case BFD_RELOC_SH_DISP20
:
3961 if (! target_big_endian
)
3965 buf
[1] = (buf
[1] & 0x0f) | ((val
>> 12) & 0xf0);
3966 buf
[2] = (val
>> 8) & 0xff;
3967 buf
[3] = val
& 0xff;
3969 case BFD_RELOC_SH_DISP20BY8
:
3970 if (!target_big_endian
)
3975 buf
[1] = (buf
[1] & 0x0f) | ((val
>> 20) & 0xf0);
3976 buf
[2] = (val
>> 16) & 0xff;
3977 buf
[3] = (val
>> 8) & 0xff;
3980 case BFD_RELOC_SH_IMM4
:
3982 *buf
= (*buf
& 0xf0) | (val
& 0xf);
3985 case BFD_RELOC_SH_IMM4BY2
:
3988 *buf
= (*buf
& 0xf0) | ((val
>> 1) & 0xf);
3991 case BFD_RELOC_SH_IMM4BY4
:
3994 *buf
= (*buf
& 0xf0) | ((val
>> 2) & 0xf);
3997 case BFD_RELOC_SH_IMM8BY2
:
4003 case BFD_RELOC_SH_IMM8BY4
:
4010 case BFD_RELOC_SH_IMM8
:
4011 /* Sometimes the 8 bit value is sign extended (e.g., add) and
4012 sometimes it is not (e.g., and). We permit any 8 bit value.
4013 Note that adding further restrictions may invalidate
4014 reasonable looking assembly code, such as ``and -0x1,r0''. */
4020 case BFD_RELOC_SH_PCRELIMM8BY4
:
4021 /* The lower two bits of the PC are cleared before the
4022 displacement is added in. We can assume that the destination
4023 is on a 4 byte boundary. If this instruction is also on a 4
4024 byte boundary, then we want
4026 and target - here is a multiple of 4.
4027 Otherwise, we are on a 2 byte boundary, and we want
4028 (target - (here - 2)) / 4
4029 and target - here is not a multiple of 4. Computing
4030 (target - (here - 2)) / 4 == (target - here + 2) / 4
4031 works for both cases, since in the first case the addition of
4032 2 will be removed by the division. target - here is in the
4034 val
= (val
+ 2) / 4;
4036 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
4040 case BFD_RELOC_SH_PCRELIMM8BY2
:
4043 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
4047 case BFD_RELOC_SH_PCDISP8BY2
:
4049 if (val
< -0x80 || val
> 0x7f)
4050 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
4054 case BFD_RELOC_SH_PCDISP12BY2
:
4056 if (val
< -0x800 || val
> 0x7ff)
4057 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
4058 buf
[lowbyte
] = val
& 0xff;
4059 buf
[highbyte
] |= (val
>> 8) & 0xf;
4063 case BFD_RELOC_32_PCREL
:
4064 apply_full_field_fix (fixP
, buf
, val
, 4);
4068 apply_full_field_fix (fixP
, buf
, val
, 2);
4071 case BFD_RELOC_SH_USES
:
4072 /* Pass the value into sh_reloc(). */
4073 fixP
->fx_addnumber
= val
;
4076 case BFD_RELOC_SH_COUNT
:
4077 case BFD_RELOC_SH_ALIGN
:
4078 case BFD_RELOC_SH_CODE
:
4079 case BFD_RELOC_SH_DATA
:
4080 case BFD_RELOC_SH_LABEL
:
4081 /* Nothing to do here. */
4084 case BFD_RELOC_SH_LOOP_START
:
4085 case BFD_RELOC_SH_LOOP_END
:
4087 case BFD_RELOC_VTABLE_INHERIT
:
4088 case BFD_RELOC_VTABLE_ENTRY
:
4093 case BFD_RELOC_32_PLT_PCREL
:
4094 /* Make the jump instruction point to the address of the operand. At
4095 runtime we merely add the offset to the actual PLT entry. */
4096 * valP
= 0xfffffffc;
4097 val
= fixP
->fx_offset
;
4099 val
-= S_GET_VALUE (fixP
->fx_subsy
);
4100 apply_full_field_fix (fixP
, buf
, val
, 4);
4103 case BFD_RELOC_SH_GOTPC
:
4104 /* This is tough to explain. We end up with this one if we have
4105 operands that look like "_GLOBAL_OFFSET_TABLE_+[.-.L284]".
4106 The goal here is to obtain the absolute address of the GOT,
4107 and it is strongly preferable from a performance point of
4108 view to avoid using a runtime relocation for this. There are
4109 cases where you have something like:
4111 .long _GLOBAL_OFFSET_TABLE_+[.-.L66]
4113 and here no correction would be required. Internally in the
4114 assembler we treat operands of this form as not being pcrel
4115 since the '.' is explicitly mentioned, and I wonder whether
4116 it would simplify matters to do it this way. Who knows. In
4117 earlier versions of the PIC patches, the pcrel_adjust field
4118 was used to store the correction, but since the expression is
4119 not pcrel, I felt it would be confusing to do it this way. */
4121 apply_full_field_fix (fixP
, buf
, val
, 4);
4124 case BFD_RELOC_SH_TLS_GD_32
:
4125 case BFD_RELOC_SH_TLS_LD_32
:
4126 case BFD_RELOC_SH_TLS_IE_32
:
4127 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
4129 case BFD_RELOC_32_GOT_PCREL
:
4130 case BFD_RELOC_SH_GOTPLT32
:
4131 * valP
= 0; /* Fully resolved at runtime. No addend. */
4132 apply_full_field_fix (fixP
, buf
, 0, 4);
4135 case BFD_RELOC_SH_TLS_LDO_32
:
4136 case BFD_RELOC_SH_TLS_LE_32
:
4137 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
4139 case BFD_RELOC_32_GOTOFF
:
4140 apply_full_field_fix (fixP
, buf
, val
, 4);
4146 shmedia_md_apply_fix (fixP
, valP
);
4155 if ((val
& ((1 << shift
) - 1)) != 0)
4156 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("misaligned offset"));
4160 val
= ((val
>> shift
)
4161 | ((long) -1 & ~ ((long) -1 >> shift
)));
4163 if (max
!= 0 && (val
< min
|| val
> max
))
4164 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("offset out of range"));
4166 /* Stop the generic code from trying to overlow check the value as well.
4167 It may not have the correct value anyway, as we do not store val back
4169 fixP
->fx_no_overflow
= 1;
4171 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
4175 /* Called just before address relaxation. Return the length
4176 by which a fragment must grow to reach it's destination. */
4179 md_estimate_size_before_relax (fragS
*fragP
, segT segment_type
)
4183 switch (fragP
->fr_subtype
)
4187 return shmedia_md_estimate_size_before_relax (fragP
, segment_type
);
4193 case C (UNCOND_JUMP
, UNDEF_DISP
):
4194 /* Used to be a branch to somewhere which was unknown. */
4195 if (!fragP
->fr_symbol
)
4197 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNCOND12
);
4199 else if (S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
4201 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNCOND12
);
4205 fragP
->fr_subtype
= C (UNCOND_JUMP
, UNDEF_WORD_DISP
);
4209 case C (COND_JUMP
, UNDEF_DISP
):
4210 case C (COND_JUMP_DELAY
, UNDEF_DISP
):
4211 what
= GET_WHAT (fragP
->fr_subtype
);
4212 /* Used to be a branch to somewhere which was unknown. */
4213 if (fragP
->fr_symbol
4214 && S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
4216 /* Got a symbol and it's defined in this segment, become byte
4217 sized - maybe it will fix up. */
4218 fragP
->fr_subtype
= C (what
, COND8
);
4220 else if (fragP
->fr_symbol
)
4222 /* Its got a segment, but its not ours, so it will always be long. */
4223 fragP
->fr_subtype
= C (what
, UNDEF_WORD_DISP
);
4227 /* We know the abs value. */
4228 fragP
->fr_subtype
= C (what
, COND8
);
4232 case C (UNCOND_JUMP
, UNCOND12
):
4233 case C (UNCOND_JUMP
, UNCOND32
):
4234 case C (UNCOND_JUMP
, UNDEF_WORD_DISP
):
4235 case C (COND_JUMP
, COND8
):
4236 case C (COND_JUMP
, COND12
):
4237 case C (COND_JUMP
, COND32
):
4238 case C (COND_JUMP
, UNDEF_WORD_DISP
):
4239 case C (COND_JUMP_DELAY
, COND8
):
4240 case C (COND_JUMP_DELAY
, COND12
):
4241 case C (COND_JUMP_DELAY
, COND32
):
4242 case C (COND_JUMP_DELAY
, UNDEF_WORD_DISP
):
4243 /* When relaxing a section for the second time, we don't need to
4244 do anything besides return the current size. */
4248 fragP
->fr_var
= md_relax_table
[fragP
->fr_subtype
].rlx_length
;
4249 return fragP
->fr_var
;
4252 /* Put number into target byte order. */
4255 md_number_to_chars (char *ptr
, valueT use
, int nbytes
)
4258 /* We might need to set the contents type to data. */
4259 sh64_flag_output ();
4262 if (! target_big_endian
)
4263 number_to_chars_littleendian (ptr
, use
, nbytes
);
4265 number_to_chars_bigendian (ptr
, use
, nbytes
);
4268 /* This version is used in obj-coff.c eg. for the sh-hms target. */
4271 md_pcrel_from (fixS
*fixP
)
4273 return fixP
->fx_size
+ fixP
->fx_where
+ fixP
->fx_frag
->fr_address
+ 2;
4277 md_pcrel_from_section (fixS
*fixP
, segT sec
)
4279 if (! sh_local_pcrel (fixP
)
4280 && fixP
->fx_addsy
!= (symbolS
*) NULL
4281 && (generic_force_reloc (fixP
)
4282 || S_GET_SEGMENT (fixP
->fx_addsy
) != sec
))
4284 /* The symbol is undefined (or is defined but not in this section,
4285 or we're not sure about it being the final definition). Let the
4286 linker figure it out. We need to adjust the subtraction of a
4287 symbol to the position of the relocated data, though. */
4288 return fixP
->fx_subsy
? fixP
->fx_where
+ fixP
->fx_frag
->fr_address
: 0;
4291 return md_pcrel_from (fixP
);
4294 /* Create a reloc. */
4297 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
4300 bfd_reloc_code_real_type r_type
;
4302 rel
= (arelent
*) xmalloc (sizeof (arelent
));
4303 rel
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4304 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4305 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4307 r_type
= fixp
->fx_r_type
;
4309 if (SWITCH_TABLE (fixp
))
4311 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
4313 if (r_type
== BFD_RELOC_16
)
4314 r_type
= BFD_RELOC_SH_SWITCH16
;
4315 else if (r_type
== BFD_RELOC_8
)
4316 r_type
= BFD_RELOC_8_PCREL
;
4317 else if (r_type
== BFD_RELOC_32
)
4318 r_type
= BFD_RELOC_SH_SWITCH32
;
4322 else if (r_type
== BFD_RELOC_SH_USES
)
4323 rel
->addend
= fixp
->fx_addnumber
;
4324 else if (r_type
== BFD_RELOC_SH_COUNT
)
4325 rel
->addend
= fixp
->fx_offset
;
4326 else if (r_type
== BFD_RELOC_SH_ALIGN
)
4327 rel
->addend
= fixp
->fx_offset
;
4328 else if (r_type
== BFD_RELOC_VTABLE_INHERIT
4329 || r_type
== BFD_RELOC_VTABLE_ENTRY
)
4330 rel
->addend
= fixp
->fx_offset
;
4331 else if (r_type
== BFD_RELOC_SH_LOOP_START
4332 || r_type
== BFD_RELOC_SH_LOOP_END
)
4333 rel
->addend
= fixp
->fx_offset
;
4334 else if (r_type
== BFD_RELOC_SH_LABEL
&& fixp
->fx_pcrel
)
4337 rel
->address
= rel
->addend
= fixp
->fx_offset
;
4340 else if (shmedia_init_reloc (rel
, fixp
))
4344 rel
->addend
= fixp
->fx_addnumber
;
4346 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, r_type
);
4348 if (rel
->howto
== NULL
)
4350 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
4351 _("Cannot represent relocation type %s"),
4352 bfd_get_reloc_code_name (r_type
));
4353 /* Set howto to a garbage value so that we can keep going. */
4354 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_32
);
4355 assert (rel
->howto
!= NULL
);
4358 else if (rel
->howto
->type
== R_SH_IND12W
)
4359 rel
->addend
+= fixp
->fx_offset
- 4;
4366 inline static char *
4367 sh_end_of_match (char *cont
, char *what
)
4369 int len
= strlen (what
);
4371 if (strncasecmp (cont
, what
, strlen (what
)) == 0
4372 && ! is_part_of_name (cont
[len
]))
4379 sh_parse_name (char const *name
,
4381 enum expr_mode mode
,
4384 char *next
= input_line_pointer
;
4389 exprP
->X_op_symbol
= NULL
;
4391 if (strcmp (name
, GLOBAL_OFFSET_TABLE_NAME
) == 0)
4394 GOT_symbol
= symbol_find_or_make (name
);
4396 exprP
->X_add_symbol
= GOT_symbol
;
4398 /* If we have an absolute symbol or a reg, then we know its
4400 segment
= S_GET_SEGMENT (exprP
->X_add_symbol
);
4401 if (mode
!= expr_defer
&& segment
== absolute_section
)
4403 exprP
->X_op
= O_constant
;
4404 exprP
->X_add_number
= S_GET_VALUE (exprP
->X_add_symbol
);
4405 exprP
->X_add_symbol
= NULL
;
4407 else if (mode
!= expr_defer
&& segment
== reg_section
)
4409 exprP
->X_op
= O_register
;
4410 exprP
->X_add_number
= S_GET_VALUE (exprP
->X_add_symbol
);
4411 exprP
->X_add_symbol
= NULL
;
4415 exprP
->X_op
= O_symbol
;
4416 exprP
->X_add_number
= 0;
4422 exprP
->X_add_symbol
= symbol_find_or_make (name
);
4424 if (*nextcharP
!= '@')
4426 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTOFF")))
4427 reloc_type
= BFD_RELOC_32_GOTOFF
;
4428 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTPLT")))
4429 reloc_type
= BFD_RELOC_SH_GOTPLT32
;
4430 else if ((next_end
= sh_end_of_match (next
+ 1, "GOT")))
4431 reloc_type
= BFD_RELOC_32_GOT_PCREL
;
4432 else if ((next_end
= sh_end_of_match (next
+ 1, "PLT")))
4433 reloc_type
= BFD_RELOC_32_PLT_PCREL
;
4434 else if ((next_end
= sh_end_of_match (next
+ 1, "TLSGD")))
4435 reloc_type
= BFD_RELOC_SH_TLS_GD_32
;
4436 else if ((next_end
= sh_end_of_match (next
+ 1, "TLSLDM")))
4437 reloc_type
= BFD_RELOC_SH_TLS_LD_32
;
4438 else if ((next_end
= sh_end_of_match (next
+ 1, "GOTTPOFF")))
4439 reloc_type
= BFD_RELOC_SH_TLS_IE_32
;
4440 else if ((next_end
= sh_end_of_match (next
+ 1, "TPOFF")))
4441 reloc_type
= BFD_RELOC_SH_TLS_LE_32
;
4442 else if ((next_end
= sh_end_of_match (next
+ 1, "DTPOFF")))
4443 reloc_type
= BFD_RELOC_SH_TLS_LDO_32
;
4447 *input_line_pointer
= *nextcharP
;
4448 input_line_pointer
= next_end
;
4449 *nextcharP
= *input_line_pointer
;
4450 *input_line_pointer
= '\0';
4452 exprP
->X_op
= O_PIC_reloc
;
4453 exprP
->X_add_number
= 0;
4454 exprP
->X_md
= reloc_type
;
4460 sh_cfi_frame_initial_instructions (void)
4462 cfi_add_CFA_def_cfa (15, 0);
4466 sh_regname_to_dw2regnum (char *regname
)
4468 unsigned int regnum
= -1;
4472 static struct { char *name
; int dw2regnum
; } regnames
[] =
4474 { "pr", 17 }, { "t", 18 }, { "gbr", 19 }, { "mach", 20 },
4475 { "macl", 21 }, { "fpul", 23 }
4478 for (i
= 0; i
< ARRAY_SIZE (regnames
); ++i
)
4479 if (strcmp (regnames
[i
].name
, regname
) == 0)
4480 return regnames
[i
].dw2regnum
;
4482 if (regname
[0] == 'r')
4485 regnum
= strtoul (p
, &q
, 10);
4486 if (p
== q
|| *q
|| regnum
>= 16)
4489 else if (regname
[0] == 'f' && regname
[1] == 'r')
4492 regnum
= strtoul (p
, &q
, 10);
4493 if (p
== q
|| *q
|| regnum
>= 16)
4497 else if (regname
[0] == 'x' && regname
[1] == 'd')
4500 regnum
= strtoul (p
, &q
, 10);
4501 if (p
== q
|| *q
|| regnum
>= 8)
4507 #endif /* OBJ_ELF */