1 /* tc-m32r.c -- Assembler for the Mitsubishi M32R.
2 Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 #include "opcodes/m32r-desc.h"
27 #include "opcodes/m32r-opc.h"
30 /* Linked list of symbols that are debugging symbols to be defined as the
31 beginning of the current instruction. */
32 typedef struct sym_link
34 struct sym_link *next;
38 static sym_linkS *debug_sym_link = (sym_linkS *)0;
40 /* Structure to hold all of the different components describing
41 an individual instruction. */
44 const CGEN_INSN * insn;
45 const CGEN_INSN * orig_insn;
48 CGEN_INSN_INT buffer [1];
49 #define INSN_VALUE(buf) (*(buf))
51 unsigned char buffer [CGEN_MAX_INSN_SIZE];
52 #define INSN_VALUE(buf) (buf)
57 fixS * fixups [GAS_CGEN_MAX_FIXUPS];
58 int indices [MAX_OPERAND_INSTANCES];
59 sym_linkS *debug_sym_link;
63 /* prev_insn.insn is non-null if last insn was a 16 bit insn on a 32 bit
64 boundary (i.e. was the first of two 16 bit insns). */
65 static m32r_insn prev_insn;
67 /* Non-zero if we've seen a relaxable insn since the last 32 bit
69 static int seen_relaxable_p = 0;
71 /* Non-zero if -relax specified, in which case sufficient relocs are output
72 for the linker to do relaxing.
73 We do simple forms of relaxing internally, but they are always done.
74 This flag does not apply to them. */
75 static int m32r_relax;
77 #if 0 /* not supported yet */
78 /* If non-NULL, pointer to cpu description file to read.
79 This allows runtime additions to the assembler. */
80 static const char * m32r_cpu_desc;
83 /* Non-zero if warn when a high/shigh reloc has no matching low reloc.
84 Each high/shigh reloc must be paired with it's low cousin in order to
85 properly calculate the addend in a relocatable link (since there is a
86 potential carry from the low to the high/shigh).
87 This option is off by default though for user-written assembler code it
88 might make sense to make the default be on (i.e. have gcc pass a flag
89 to turn it off). This warning must not be on for GCC created code as
90 optimization may delete the low but not the high/shigh (at least we
91 shouldn't assume or require it to). */
92 static int warn_unmatched_high = 0;
94 /* Non-zero if -m32rx has been specified, in which case support for the
95 extended M32RX instruction set should be enabled. */
96 static int enable_m32rx = 0;
98 /* Non-zero if -m32rx -hidden has been specified, in which case support for
99 the special M32RX instruction set should be enabled. */
100 static int enable_special = 0;
102 /* Non-zero if the programmer should be warned when an explicit parallel
103 instruction might have constraint violations. */
104 static int warn_explicit_parallel_conflicts = 1;
106 /* Non-zero if insns can be made parallel. */
109 /* stuff for .scomm symbols. */
110 static segT sbss_section;
111 static asection scom_section;
112 static asymbol scom_symbol;
114 const char comment_chars[] = ";";
115 const char line_comment_chars[] = "#";
116 const char line_separator_chars[] = "";
117 const char EXP_CHARS[] = "eE";
118 const char FLT_CHARS[] = "dD";
120 /* Relocations against symbols are done in two
121 parts, with a HI relocation and a LO relocation. Each relocation
122 has only 16 bits of space to store an addend. This means that in
123 order for the linker to handle carries correctly, it must be able
124 to locate both the HI and the LO relocation. This means that the
125 relocations must appear in order in the relocation table.
127 In order to implement this, we keep track of each unmatched HI
128 relocation. We then sort them so that they immediately precede the
129 corresponding LO relocation. */
133 struct m32r_hi_fixup * next; /* Next HI fixup. */
134 fixS * fixp; /* This fixup. */
135 segT seg; /* The section this fixup is in. */
139 /* The list of unmatched HI relocs. */
141 static struct m32r_hi_fixup * m32r_hi_fixup_list;
150 if (stdoutput != NULL)
151 bfd_set_arch_mach (stdoutput, TARGET_ARCH,
152 enable_m32rx ? bfd_mach_m32rx : bfd_mach_m32r);
155 #define M32R_SHORTOPTS "O"
156 const char * md_shortopts = M32R_SHORTOPTS;
158 struct option md_longopts[] =
160 #define OPTION_M32R (OPTION_MD_BASE)
161 #define OPTION_M32RX (OPTION_M32R + 1)
162 #define OPTION_WARN_PARALLEL (OPTION_M32RX + 1)
163 #define OPTION_NO_WARN_PARALLEL (OPTION_WARN_PARALLEL + 1)
164 #define OPTION_SPECIAL (OPTION_NO_WARN_PARALLEL + 1)
165 #define OPTION_WARN_UNMATCHED (OPTION_SPECIAL + 1)
166 #define OPTION_NO_WARN_UNMATCHED (OPTION_WARN_UNMATCHED + 1)
167 {"m32r", no_argument, NULL, OPTION_M32R},
168 {"m32rx", no_argument, NULL, OPTION_M32RX},
169 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN_PARALLEL},
170 {"Wp", no_argument, NULL, OPTION_WARN_PARALLEL},
171 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
172 {"Wnp", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
173 {"hidden", no_argument, NULL, OPTION_SPECIAL},
174 /* Sigh. I guess all warnings must now have both variants. */
175 {"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
176 {"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
177 {"no-warn-unmatched-high", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
178 {"Wnuh", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
180 #if 0 /* not supported yet */
181 #define OPTION_RELAX (OPTION_NO_WARN_UNMATCHED + 1)
182 #define OPTION_CPU_DESC (OPTION_RELAX + 1)
183 {"relax", no_argument, NULL, OPTION_RELAX},
184 {"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
186 {NULL, no_argument, NULL, 0}
188 size_t md_longopts_size = sizeof (md_longopts);
191 md_parse_option (c, arg)
209 case OPTION_WARN_PARALLEL:
210 warn_explicit_parallel_conflicts = 1;
213 case OPTION_NO_WARN_PARALLEL:
214 warn_explicit_parallel_conflicts = 0;
222 /* Pretend that we do not recognise this option. */
223 as_bad (_("Unrecognised option: -hidden"));
228 case OPTION_WARN_UNMATCHED:
229 warn_unmatched_high = 1;
232 case OPTION_NO_WARN_UNMATCHED:
233 warn_unmatched_high = 0;
236 #if 0 /* not supported yet */
240 case OPTION_CPU_DESC:
253 md_show_usage (stream)
256 fprintf (stream, _(" M32R specific command line options:\n"));
258 fprintf (stream, _("\
259 -m32r disable support for the m32rx instruction set\n"));
260 fprintf (stream, _("\
261 -m32rx support the extended m32rx instruction set\n"));
262 fprintf (stream, _("\
263 -O try to combine instructions in parallel\n"));
265 fprintf (stream, _("\
266 -warn-explicit-parallel-conflicts warn when parallel instructions\n"));
267 fprintf (stream, _("\
268 violate contraints\n"));
269 fprintf (stream, _("\
270 -no-warn-explicit-parallel-conflicts do not warn when parallel\n"));
271 fprintf (stream, _("\
272 instructions violate contraints\n"));
273 fprintf (stream, _("\
274 -Wp synonym for -warn-explicit-parallel-conflicts\n"));
275 fprintf (stream, _("\
276 -Wnp synonym for -no-warn-explicit-parallel-conflicts\n"));
278 fprintf (stream, _("\
279 -warn-unmatched-high warn when an (s)high reloc has no matching low reloc\n"));
280 fprintf (stream, _("\
281 -no-warn-unmatched-high do not warn about missing low relocs\n"));
282 fprintf (stream, _("\
283 -Wuh synonym for -warn-unmatched-high\n"));
284 fprintf (stream, _("\
285 -Wnuh synonym for -no-warn-unmatched-high\n"));
288 fprintf (stream, _("\
289 -relax create linker relaxable code\n"));
290 fprintf (stream, _("\
291 -cpu-desc provide runtime cpu description file\n"));
295 static void fill_insn PARAMS ((int));
296 static void m32r_scomm PARAMS ((int));
297 static void debug_sym PARAMS ((int));
298 static void expand_debug_syms PARAMS ((sym_linkS *, int));
300 /* Set by md_assemble for use by m32r_fill_insn. */
301 static subsegT prev_subseg;
302 static segT prev_seg;
304 /* The target specific pseudo-ops which we support. */
305 const pseudo_typeS md_pseudo_table[] =
308 { "fillinsn", fill_insn, 0 },
309 { "scomm", m32r_scomm, 0 },
310 { "debugsym", debug_sym, 0 },
311 /* Not documented as so far there is no need for them.... */
312 { "m32r", allow_m32rx, 0 },
313 { "m32rx", allow_m32rx, 1 },
317 /* FIXME: Should be machine generated. */
318 #define NOP_INSN 0x7000
319 #define PAR_NOP_INSN 0xf000 /* can only be used in 2nd slot */
321 /* When we align the .text section, insert the correct NOP pattern.
322 N is the power of 2 alignment. LEN is the length of pattern FILL.
323 MAX is the maximum number of characters to skip when doing the alignment,
324 or 0 if there is no maximum. */
327 m32r_do_align (n, fill, len, max)
333 /* Only do this if the fill pattern wasn't specified. */
335 && subseg_text_p (now_seg)
336 /* Only do this special handling if aligning to at least a
339 /* Only do this special handling if we're allowed to emit at
341 && (max == 0 || max > 1))
343 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
346 /* First align to a 2 byte boundary, in case there is an odd .byte. */
347 /* FIXME: How much memory will cause gas to use when assembling a big
348 program? Perhaps we can avoid the frag_align call? */
349 frag_align (1, 0, 0);
351 /* Next align to a 4 byte boundary (we know n >= 2) using a parallel
353 frag_align_pattern (2, nop_pattern, sizeof nop_pattern, 0);
354 /* If doing larger alignments use a repeating sequence of appropriate
358 static const unsigned char multi_nop_pattern[] =
359 { 0x70, 0x00, 0xf0, 0x00 };
360 frag_align_pattern (n, multi_nop_pattern, sizeof multi_nop_pattern,
364 prev_insn.insn = NULL;
371 /* If the last instruction was the first of 2 16 bit insns,
372 output a nop to move the PC to a 32 bit boundary.
374 This is done via an alignment specification since branch relaxing
375 may make it unnecessary.
377 Internally, we need to output one of these each time a 32 bit insn is
378 seen after an insn that is relaxable. */
384 (void) m32r_do_align (2, NULL, 0, 0);
385 prev_insn.insn = NULL;
386 seen_relaxable_p = 0;
389 /* Record the symbol so that when we output the insn, we can create
390 a symbol that is at the start of the instruction. This is used
391 to emit the label for the start of a breakpoint without causing
392 the assembler to emit a NOP if the previous instruction was a
393 16 bit instruction. */
401 register char *end_name;
402 register symbolS *symbolP;
403 register sym_linkS *link;
405 name = input_line_pointer;
406 delim = get_symbol_end ();
407 end_name = input_line_pointer;
409 if ((symbolP = symbol_find (name)) == NULL
410 && (symbolP = md_undefined_symbol (name)) == NULL)
412 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
415 symbol_table_insert (symbolP);
416 if (S_IS_DEFINED (symbolP) && S_GET_SEGMENT (symbolP) != reg_section)
417 /* xgettext:c-format */
418 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
422 link = (sym_linkS *) xmalloc (sizeof (sym_linkS));
423 link->symbol = symbolP;
424 link->next = debug_sym_link;
425 debug_sym_link = link;
426 symbol_get_obj (symbolP)->local = 1;
430 demand_empty_rest_of_line ();
433 /* Second pass to expanding the debug symbols, go through linked
434 list of symbols and reassign the address. */
437 expand_debug_syms (syms, align)
441 char *save_input_line = input_line_pointer;
442 sym_linkS *next_syms;
447 (void) m32r_do_align (align, NULL, 0, 0);
448 for (; syms != (sym_linkS *)0; syms = next_syms)
450 symbolS *symbolP = syms->symbol;
451 next_syms = syms->next;
452 input_line_pointer = ".\n";
453 pseudo_set (symbolP);
457 input_line_pointer = save_input_line;
460 /* Cover function to fill_insn called after a label and at end of assembly.
461 The result is always 1: we're called in a conditional to see if the
462 current line is a label. */
465 m32r_fill_insn (done)
468 if (prev_seg != NULL)
471 subsegT subseg = now_subseg;
473 subseg_set (prev_seg, prev_subseg);
477 subseg_set (seg, subseg);
480 if (done && debug_sym_link)
482 expand_debug_syms (debug_sym_link, 1);
483 debug_sym_link = (sym_linkS *)0;
496 /* Initialize the `cgen' interface. */
498 /* Set the machine number and endian. */
499 gas_cgen_cpu_desc = m32r_cgen_cpu_open (CGEN_CPU_OPEN_MACHS, 0,
500 CGEN_CPU_OPEN_ENDIAN,
503 m32r_cgen_init_asm (gas_cgen_cpu_desc);
505 /* The operand instance table is used during optimization to determine
506 which insns can be executed in parallel. It is also used to give
507 warnings regarding operand interference in parallel insns. */
508 m32r_cgen_init_opinst_table (gas_cgen_cpu_desc);
510 /* This is a callback from cgen to gas to parse operands. */
511 cgen_set_parse_operand_fn (gas_cgen_cpu_desc, gas_cgen_parse_operand);
513 #if 0 /* not supported yet */
514 /* If a runtime cpu description file was provided, parse it. */
515 if (m32r_cpu_desc != NULL)
519 errmsg = cgen_read_cpu_file (gas_cgen_cpu_desc, m32r_cpu_desc);
521 as_bad ("%s: %s", m32r_cpu_desc, errmsg);
525 /* Save the current subseg so we can restore it [it's the default one and
526 we don't want the initial section to be .sbss]. */
530 /* The sbss section is for local .scomm symbols. */
531 sbss_section = subseg_new (".sbss", 0);
533 /* This is copied from perform_an_assembly_pass. */
534 applicable = bfd_applicable_section_flags (stdoutput);
535 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
537 #if 0 /* What does this do? [see perform_an_assembly_pass] */
538 seg_info (bss_section)->bss = 1;
541 subseg_set (seg, subseg);
543 /* We must construct a fake section similar to bfd_com_section
544 but with the name .scommon. */
545 scom_section = bfd_com_section;
546 scom_section.name = ".scommon";
547 scom_section.output_section = & scom_section;
548 scom_section.symbol = & scom_symbol;
549 scom_section.symbol_ptr_ptr = & scom_section.symbol;
550 scom_symbol = * bfd_com_section.symbol;
551 scom_symbol.name = ".scommon";
552 scom_symbol.section = & scom_section;
554 allow_m32rx (enable_m32rx);
557 #define OPERAND_IS_COND_BIT(operand, indices, index) \
558 ((operand)->hw_type == HW_H_COND \
559 || ((operand)->hw_type == HW_H_PSW) \
560 || ((operand)->hw_type == HW_H_CR \
561 && (indices [index] == 0 || indices [index] == 1)))
563 /* Returns true if an output of instruction 'a' is referenced by an operand
564 of instruction 'b'. If 'check_outputs' is true then b's outputs are
565 checked, otherwise its inputs are examined. */
568 first_writes_to_seconds_operands (a, b, check_outputs)
571 const int check_outputs;
573 const CGEN_OPINST * a_operands = CGEN_INSN_OPERANDS (a->insn);
574 const CGEN_OPINST * b_ops = CGEN_INSN_OPERANDS (b->insn);
577 /* If at least one of the instructions takes no operands, then there is
578 nothing to check. There really are instructions without operands,
580 if (a_operands == NULL || b_ops == NULL)
583 /* Scan the operand list of 'a' looking for an output operand. */
585 a_operands->type != CGEN_OPINST_END;
586 a_index ++, a_operands ++)
588 if (a_operands->type == CGEN_OPINST_OUTPUT)
591 const CGEN_OPINST * b_operands = b_ops;
594 The Condition bit 'C' is a shadow of the CBR register (control
595 register 1) and also a shadow of bit 31 of the program status
596 word (control register 0). For now this is handled here, rather
599 if (OPERAND_IS_COND_BIT (a_operands, a->indices, a_index))
601 /* Scan operand list of 'b' looking for another reference to the
602 condition bit, which goes in the right direction. */
604 b_operands->type != CGEN_OPINST_END;
605 b_index ++, b_operands ++)
607 if ((b_operands->type
610 : CGEN_OPINST_INPUT))
611 && OPERAND_IS_COND_BIT (b_operands, b->indices, b_index))
617 /* Scan operand list of 'b' looking for an operand that
618 references the same hardware element, and which goes in the
621 b_operands->type != CGEN_OPINST_END;
622 b_index ++, b_operands ++)
624 if ((b_operands->type
627 : CGEN_OPINST_INPUT))
628 && (b_operands->hw_type == a_operands->hw_type)
629 && (a->indices [a_index] == b->indices [b_index]))
639 /* Returns true if the insn can (potentially) alter the program counter. */
645 #if 0 /* Once PC operands are working.... */
646 const CGEN_OPINST * a_operands == CGEN_INSN_OPERANDS (gas_cgen_cpu_desc,
649 if (a_operands == NULL)
652 while (a_operands->type != CGEN_OPINST_END)
654 if (a_operands->operand != NULL
655 && CGEN_OPERAND_INDEX (gas_cgen_cpu_desc, a_operands->operand) == M32R_OPERAND_PC)
661 if (CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_UNCOND_CTI)
662 || CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_COND_CTI))
668 /* Returns NULL if the two 16 bit insns can be executed in parallel,
669 otherwise it returns a pointer to an error message explaining why not. */
672 can_make_parallel (a, b)
679 /* Make sure the instructions are the right length. */
680 if ( CGEN_FIELDS_BITSIZE (& a->fields) != 16
681 || CGEN_FIELDS_BITSIZE (& b->fields) != 16)
684 if (first_writes_to_seconds_operands (a, b, true))
685 return _("Instructions write to the same destination register.");
687 a_pipe = CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_PIPE);
688 b_pipe = CGEN_INSN_ATTR_VALUE (b->insn, CGEN_INSN_PIPE);
690 /* Make sure that the instructions use the correct execution pipelines. */
691 if ( a_pipe == PIPE_NONE
692 || b_pipe == PIPE_NONE)
693 return _("Instructions do not use parallel execution pipelines.");
695 /* Leave this test for last, since it is the only test that can
696 go away if the instructions are swapped, and we want to make
697 sure that any other errors are detected before this happens. */
698 if ( a_pipe == PIPE_S
700 return _("Instructions share the same execution pipeline");
705 /* Force the top bit of the second 16-bit insn to be set. */
708 make_parallel (buffer)
709 CGEN_INSN_BYTES_PTR buffer;
714 buffer [CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
719 /* Same as make_parallel except buffer contains the bytes in target order. */
722 target_make_parallel (buffer)
725 buffer [CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
729 /* Assemble two instructions with an explicit parallel operation (||) or
730 sequential operation (->). */
733 assemble_two_insns (str, str2, parallel_p)
742 char save_str2 = *str2;
744 * str2 = 0; /* Seperate the two instructions. */
746 /* Make sure the two insns begin on a 32 bit boundary.
747 This is also done for the serial case (foo -> bar), relaxing doesn't
748 affect insns written like this.
749 Note that we must always do this as we can't assume anything about
750 whether we're currently on a 32 bit boundary or not. Relaxing may
754 first.debug_sym_link = debug_sym_link;
755 debug_sym_link = (sym_linkS *)0;
757 /* Parse the first instruction. */
758 if (! (first.insn = m32r_cgen_assemble_insn
759 (gas_cgen_cpu_desc, str, & first.fields, first.buffer, & errmsg)))
766 if (CGEN_FIELDS_BITSIZE (&first.fields) != 16)
768 /* xgettext:c-format */
769 as_bad (_("not a 16 bit instruction '%s'"), str);
772 else if (! enable_special
773 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL))
775 /* xgettext:c-format */
776 as_bad (_("unknown instruction '%s'"), str);
779 else if (! enable_m32rx
780 /* FIXME: Need standard macro to perform this test. */
781 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
783 /* xgettext:c-format */
784 as_bad (_("instruction '%s' is for the M32RX only"), str);
788 /* Check to see if this is an allowable parallel insn. */
789 if (parallel_p && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
791 /* xgettext:c-format */
792 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
796 *str2 = save_str2; /* Restore the original assembly text, just in case it is needed. */
797 str3 = str; /* Save the original string pointer. */
798 str = str2 + 2; /* Advanced past the parsed string. */
799 str2 = str3; /* Remember the entire string in case it is needed for error messages. */
801 /* Convert the opcode to lower case. */
805 while (isspace (*s2 ++))
810 while (isalnum (*s2))
812 if (isupper ((unsigned char) *s2))
818 /* Preserve any fixups that have been generated and reset the list to empty. */
819 gas_cgen_save_fixups ();
821 /* Get the indices of the operands of the instruction. */
822 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
823 doesn't seem right. Perhaps allow passing fields like we do insn. */
824 /* FIXME: ALIAS insns do not have operands, so we use this function
825 to find the equivalent insn and overwrite the value stored in our
826 structure. We still need the original insn, however, since this
827 may have certain attributes that are not present in the unaliased
828 version (eg relaxability). When aliases behave differently this
829 may have to change. */
830 first.orig_insn = first.insn;
832 CGEN_FIELDS tmp_fields;
833 first.insn = cgen_lookup_get_insn_operands
834 (gas_cgen_cpu_desc, NULL, INSN_VALUE (first.buffer), NULL, 16,
835 first.indices, &tmp_fields);
838 if (first.insn == NULL)
839 as_fatal (_("internal error: lookup/get operands failed"));
841 second.debug_sym_link = NULL;
843 /* Parse the second instruction. */
844 if (! (second.insn = m32r_cgen_assemble_insn
845 (gas_cgen_cpu_desc, str, & second.fields, second.buffer, & errmsg)))
852 if (CGEN_FIELDS_BITSIZE (&second.fields) != 16)
854 /* xgettext:c-format */
855 as_bad (_("not a 16 bit instruction '%s'"), str);
858 else if (! enable_special
859 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL))
861 /* xgettext:c-format */
862 as_bad (_("unknown instruction '%s'"), str);
865 else if (! enable_m32rx
866 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
868 /* xgettext:c-format */
869 as_bad (_("instruction '%s' is for the M32RX only"), str);
873 /* Check to see if this is an allowable parallel insn. */
874 if (parallel_p && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_PIPE) == PIPE_NONE)
876 /* xgettext:c-format */
877 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
881 if (parallel_p && ! enable_m32rx)
883 if (CGEN_INSN_NUM (first.insn) != M32R_INSN_NOP
884 && CGEN_INSN_NUM (second.insn) != M32R_INSN_NOP)
886 /* xgettext:c-format */
887 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2);
892 /* Get the indices of the operands of the instruction. */
893 second.orig_insn = second.insn;
895 CGEN_FIELDS tmp_fields;
896 second.insn = cgen_lookup_get_insn_operands
897 (gas_cgen_cpu_desc, NULL, INSN_VALUE (second.buffer), NULL, 16,
898 second.indices, &tmp_fields);
901 if (second.insn == NULL)
902 as_fatal (_("internal error: lookup/get operands failed"));
904 /* We assume that if the first instruction writes to a register that is
905 read by the second instruction it is because the programmer intended
906 this to happen, (after all they have explicitly requested that these
907 two instructions be executed in parallel). Although if the global
908 variable warn_explicit_parallel_conflicts is true then we do generate
909 a warning message. Similarly we assume that parallel branch and jump
910 instructions are deliberate and should not produce errors. */
912 if (parallel_p && warn_explicit_parallel_conflicts)
914 if (first_writes_to_seconds_operands (& first, & second, false))
915 /* xgettext:c-format */
916 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2);
918 if (first_writes_to_seconds_operands (& second, & first, false))
919 /* xgettext:c-format */
920 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2);
924 || (errmsg = (char *) can_make_parallel (& first, & second)) == NULL)
926 /* Get the fixups for the first instruction. */
927 gas_cgen_swap_fixups ();
930 expand_debug_syms (first.debug_sym_link, 1);
931 gas_cgen_finish_insn (first.orig_insn, first.buffer,
932 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
934 /* Force the top bit of the second insn to be set. */
936 make_parallel (second.buffer);
938 /* Get its fixups. */
939 gas_cgen_restore_fixups ();
942 expand_debug_syms (second.debug_sym_link, 1);
943 gas_cgen_finish_insn (second.orig_insn, second.buffer,
944 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
946 /* Try swapping the instructions to see if they work that way. */
947 else if (can_make_parallel (& second, & first) == NULL)
949 /* Write out the second instruction first. */
950 expand_debug_syms (second.debug_sym_link, 1);
951 gas_cgen_finish_insn (second.orig_insn, second.buffer,
952 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
954 /* Force the top bit of the first instruction to be set. */
955 make_parallel (first.buffer);
957 /* Get the fixups for the first instruction. */
958 gas_cgen_restore_fixups ();
960 /* Write out the first instruction. */
961 expand_debug_syms (first.debug_sym_link, 1);
962 gas_cgen_finish_insn (first.orig_insn, first.buffer,
963 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
967 as_bad ("'%s': %s", str2, errmsg);
971 /* Set these so m32r_fill_insn can use them. */
973 prev_subseg = now_subseg;
984 /* Initialize GAS's cgen interface for a new instruction. */
985 gas_cgen_init_parse ();
987 /* Look for a parallel instruction seperator. */
988 if ((str2 = strstr (str, "||")) != NULL)
990 assemble_two_insns (str, str2, 1);
994 /* Also look for a sequential instruction seperator. */
995 if ((str2 = strstr (str, "->")) != NULL)
997 assemble_two_insns (str, str2, 0);
1001 insn.debug_sym_link = debug_sym_link;
1002 debug_sym_link = (sym_linkS *)0;
1004 insn.insn = m32r_cgen_assemble_insn
1005 (gas_cgen_cpu_desc, str, & insn.fields, insn.buffer, & errmsg);
1013 if (! enable_special
1014 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL))
1016 /* xgettext:c-format */
1017 as_bad (_("unknown instruction '%s'"), str);
1020 else if (! enable_m32rx
1021 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
1023 /* xgettext:c-format */
1024 as_bad (_("instruction '%s' is for the M32RX only"), str);
1028 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
1030 /* 32 bit insns must live on 32 bit boundaries. */
1031 if (prev_insn.insn || seen_relaxable_p)
1033 /* ??? If calling fill_insn too many times turns us into a memory
1034 pig, can we call a fn to assemble a nop instead of
1035 !seen_relaxable_p? */
1039 expand_debug_syms (insn.debug_sym_link, 2);
1041 /* Doesn't really matter what we pass for RELAX_P here. */
1042 gas_cgen_finish_insn (insn.insn, insn.buffer,
1043 CGEN_FIELDS_BITSIZE (& insn.fields), 1, NULL);
1047 int on_32bit_boundary_p;
1050 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
1053 insn.orig_insn = insn.insn;
1055 /* If the previous insn was relaxable, then it may be expanded
1056 to fill the current 16 bit slot. Emit a NOP here to occupy
1057 this slot, so that we can start at optimizing at a 32 bit
1059 if (prev_insn.insn && seen_relaxable_p && optimize)
1064 /* Get the indices of the operands of the instruction.
1065 FIXME: See assemble_parallel for notes on orig_insn. */
1067 CGEN_FIELDS tmp_fields;
1068 insn.insn = cgen_lookup_get_insn_operands
1069 (gas_cgen_cpu_desc, NULL, INSN_VALUE (insn.buffer), NULL,
1070 16, insn.indices, &tmp_fields);
1073 if (insn.insn == NULL)
1074 as_fatal (_("internal error: lookup/get operands failed"));
1077 /* Compute whether we're on a 32 bit boundary or not.
1078 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1079 on_32bit_boundary_p = prev_insn.insn == NULL;
1081 /* Look to see if this instruction can be combined with the
1082 previous instruction to make one, parallel, 32 bit instruction.
1083 If the previous instruction (potentially) changed the flow of
1084 program control, then it cannot be combined with the current
1085 instruction. If the current instruction is relaxable, then it
1086 might be replaced with a longer version, so we cannot combine it.
1087 Also if the output of the previous instruction is used as an
1088 input to the current instruction then it cannot be combined.
1089 Otherwise call can_make_parallel() with both orderings of the
1090 instructions to see if they can be combined. */
1091 if ( ! on_32bit_boundary_p
1094 && CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_RELAXABLE) == 0
1095 && ! writes_to_pc (& prev_insn)
1096 && ! first_writes_to_seconds_operands (& prev_insn, &insn, false)
1099 if (can_make_parallel (& prev_insn, & insn) == NULL)
1100 make_parallel (insn.buffer);
1101 else if (can_make_parallel (& insn, & prev_insn) == NULL)
1105 expand_debug_syms (insn.debug_sym_link, 1);
1111 /* Ensure each pair of 16 bit insns is in the same frag. */
1114 gas_cgen_finish_insn (insn.orig_insn, insn.buffer,
1115 CGEN_FIELDS_BITSIZE (& insn.fields),
1116 1 /*relax_p*/, &fi);
1117 insn.addr = fi.addr;
1118 insn.frag = fi.frag;
1119 insn.num_fixups = fi.num_fixups;
1120 for (i = 0; i < fi.num_fixups; ++i)
1121 insn.fixups[i] = fi.fixups[i];
1128 #define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1130 /* Swap the two insns */
1131 SWAP_BYTES (prev_insn.addr [0], insn.addr [0]);
1132 SWAP_BYTES (prev_insn.addr [1], insn.addr [1]);
1134 target_make_parallel (insn.addr);
1136 /* Swap any relaxable frags recorded for the two insns. */
1137 /* FIXME: Clarify. relaxation precludes parallel insns */
1138 if (prev_insn.frag->fr_opcode == prev_insn.addr)
1139 prev_insn.frag->fr_opcode = insn.addr;
1140 else if (insn.frag->fr_opcode == insn.addr)
1141 insn.frag->fr_opcode = prev_insn.addr;
1143 /* Update the addresses in any fixups.
1144 Note that we don't have to handle the case where each insn is in
1145 a different frag as we ensure they're in the same frag above. */
1146 for (i = 0; i < prev_insn.num_fixups; ++i)
1147 prev_insn.fixups[i]->fx_where += 2;
1148 for (i = 0; i < insn.num_fixups; ++i)
1149 insn.fixups[i]->fx_where -= 2;
1152 /* Keep track of whether we've seen a pair of 16 bit insns.
1153 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1154 if (on_32bit_boundary_p)
1157 prev_insn.insn = NULL;
1159 /* If the insn needs the following one to be on a 32 bit boundary
1160 (e.g. subroutine calls), fill this insn's slot. */
1161 if (on_32bit_boundary_p
1162 && CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_FILL_SLOT) != 0)
1165 /* If this is a relaxable insn (can be replaced with a larger version)
1166 mark the fact so that we can emit an alignment directive for a
1167 following 32 bit insn if we see one. */
1168 if (CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_RELAXABLE) != 0)
1169 seen_relaxable_p = 1;
1172 /* Set these so m32r_fill_insn can use them. */
1174 prev_subseg = now_subseg;
1177 /* The syntax in the manual says constants begin with '#'.
1178 We just ignore it. */
1181 md_operand (expressionP)
1182 expressionS * expressionP;
1184 if (* input_line_pointer == '#')
1186 input_line_pointer ++;
1187 expression (expressionP);
1192 md_section_align (segment, size)
1196 int align = bfd_get_section_alignment (stdoutput, segment);
1197 return ((size + (1 << align) - 1) & (-1 << align));
1201 md_undefined_symbol (name)
1207 /* .scomm pseudo-op handler.
1209 This is a new pseudo-op to handle putting objects in .scommon.
1210 By doing this the linker won't need to do any work and more importantly
1211 it removes the implicit -G arg necessary to correctly link the object file.
1218 register char * name;
1222 register symbolS * symbolP;
1226 name = input_line_pointer;
1227 c = get_symbol_end ();
1229 /* just after name is now '\0' */
1230 p = input_line_pointer;
1233 if (* input_line_pointer != ',')
1235 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1236 ignore_rest_of_line ();
1240 input_line_pointer ++; /* skip ',' */
1241 if ((size = get_absolute_expression ()) < 0)
1243 /* xgettext:c-format */
1244 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size);
1245 ignore_rest_of_line ();
1249 /* The third argument to .scomm is the alignment. */
1250 if (* input_line_pointer != ',')
1254 ++ input_line_pointer;
1255 align = get_absolute_expression ();
1258 as_warn (_("ignoring bad alignment"));
1262 /* Convert to a power of 2 alignment. */
1265 for (align2 = 0; (align & 1) == 0; align >>= 1, ++ align2)
1269 as_bad (_("Common alignment not a power of 2"));
1270 ignore_rest_of_line ();
1278 symbolP = symbol_find_or_make (name);
1281 if (S_IS_DEFINED (symbolP))
1283 /* xgettext:c-format */
1284 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1285 S_GET_NAME (symbolP));
1286 ignore_rest_of_line ();
1290 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1292 /* xgettext:c-format */
1293 as_bad (_("Length of .scomm \"%s\" is already %ld. Not changed to %ld."),
1294 S_GET_NAME (symbolP),
1295 (long) S_GET_VALUE (symbolP),
1298 ignore_rest_of_line ();
1302 if (symbol_get_obj (symbolP)->local)
1304 segT old_sec = now_seg;
1305 int old_subsec = now_subseg;
1308 record_alignment (sbss_section, align2);
1309 subseg_set (sbss_section, 0);
1312 frag_align (align2, 0, 0);
1314 if (S_GET_SEGMENT (symbolP) == sbss_section)
1315 symbol_get_frag (symbolP)->fr_symbol = 0;
1317 symbol_set_frag (symbolP, frag_now);
1319 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1322 S_SET_SIZE (symbolP, size);
1323 S_SET_SEGMENT (symbolP, sbss_section);
1324 S_CLEAR_EXTERNAL (symbolP);
1325 subseg_set (old_sec, old_subsec);
1329 S_SET_VALUE (symbolP, (valueT) size);
1330 S_SET_ALIGN (symbolP, align2);
1331 S_SET_EXTERNAL (symbolP);
1332 S_SET_SEGMENT (symbolP, & scom_section);
1335 demand_empty_rest_of_line ();
1338 /* Interface to relax_segment. */
1340 /* FIXME: Build table by hand, get it working, then machine generate. */
1342 const relax_typeS md_relax_table[] =
1345 1) most positive reach of this state,
1346 2) most negative reach of this state,
1347 3) how many bytes this mode will add to the size of the current frag
1348 4) which index into the table to try if we can't fit into this one. */
1350 /* The first entry must be unused because an `rlx_more' value of zero ends
1354 /* The displacement used by GAS is from the end of the 2 byte insn,
1355 so we subtract 2 from the following. */
1356 /* 16 bit insn, 8 bit disp -> 10 bit range.
1357 This doesn't handle a branch in the right slot at the border:
1358 the "& -4" isn't taken into account. It's not important enough to
1359 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1361 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1362 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1363 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1364 /* Same thing, but with leading nop for alignment. */
1365 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1369 m32r_relax_frag (fragP, stretch)
1373 /* Address of branch insn. */
1374 long address = fragP->fr_address + fragP->fr_fix - 2;
1377 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1378 if (fragP->fr_subtype == 2)
1380 if ((address & 3) != 0)
1382 fragP->fr_subtype = 3;
1386 else if (fragP->fr_subtype == 3)
1388 if ((address & 3) == 0)
1390 fragP->fr_subtype = 2;
1396 growth = relax_frag (fragP, stretch);
1398 /* Long jump on odd halfword boundary? */
1399 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1401 fragP->fr_subtype = 3;
1409 /* Return an initial guess of the length by which a fragment must grow to
1410 hold a branch to reach its destination.
1411 Also updates fr_type/fr_subtype as necessary.
1413 Called just before doing relaxation.
1414 Any symbol that is now undefined will not become defined.
1415 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1416 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1417 Although it may not be explicit in the frag, pretend fr_var starts with a
1421 md_estimate_size_before_relax (fragP, segment)
1425 int old_fr_fix = fragP->fr_fix;
1427 /* The only thing we have to handle here are symbols outside of the
1428 current segment. They may be undefined or in a different segment in
1429 which case linker scripts may place them anywhere.
1430 However, we can't finish the fragment here and emit the reloc as insn
1431 alignment requirements may move the insn about. */
1433 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
1435 /* The symbol is undefined in this segment.
1436 Change the relaxation subtype to the max allowable and leave
1437 all further handling to md_convert_frag. */
1438 fragP->fr_subtype = 2;
1440 #if 0 /* Can't use this, but leave in for illustration. */
1441 /* Change 16 bit insn to 32 bit insn. */
1442 fragP->fr_opcode[0] |= 0x80;
1444 /* Increase known (fixed) size of fragment. */
1447 /* Create a relocation for it. */
1448 fix_new (fragP, old_fr_fix, 4,
1450 fragP->fr_offset, 1 /* pcrel */,
1451 /* FIXME: Can't use a real BFD reloc here.
1452 gas_cgen_md_apply_fix3 can't handle it. */
1453 BFD_RELOC_M32R_26_PCREL);
1455 /* Mark this fragment as finished. */
1459 const CGEN_INSN * insn;
1462 /* Update the recorded insn.
1463 Fortunately we don't have to look very far.
1464 FIXME: Change this to record in the instruction the next higher
1465 relaxable insn to use. */
1466 for (i = 0, insn = fragP->fr_cgen.insn; i < 4; i++, insn++)
1468 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1469 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
1471 && CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAX))
1477 fragP->fr_cgen.insn = insn;
1483 return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
1486 /* *fragP has been relaxed to its final size, and now needs to have
1487 the bytes inside it modified to conform to the new size.
1489 Called after relaxation is finished.
1490 fragP->fr_type == rs_machine_dependent.
1491 fragP->fr_subtype is the subtype of what the address relaxed to. */
1494 md_convert_frag (abfd, sec, fragP)
1500 char * displacement;
1506 opcode = fragP->fr_opcode;
1508 /* Address opcode resides at in file space. */
1509 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1511 switch (fragP->fr_subtype)
1515 displacement = & opcode[1];
1520 displacement = & opcode[1];
1523 opcode[2] = opcode[0] | 0x80;
1524 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1525 opcode_address += 2;
1527 displacement = & opcode[3];
1533 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1535 /* symbol must be resolved by linker */
1536 if (fragP->fr_offset & 3)
1537 as_warn (_("Addend to unresolved symbol not on word boundary."));
1538 addend = fragP->fr_offset >> 2;
1542 /* Address we want to reach in file space. */
1543 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
1544 target_address += symbol_get_frag (fragP->fr_symbol)->fr_address;
1545 addend = (target_address - (opcode_address & -4)) >> 2;
1548 /* Create a relocation for symbols that must be resolved by the linker.
1549 Otherwise output the completed insn. */
1551 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1553 assert (fragP->fr_subtype != 1);
1554 assert (fragP->fr_cgen.insn != 0);
1555 gas_cgen_record_fixup (fragP,
1556 /* Offset of branch insn in frag. */
1557 fragP->fr_fix + extension - 4,
1558 fragP->fr_cgen.insn,
1560 /* FIXME: quick hack */
1562 cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
1563 fragP->fr_cgen.opindex),
1565 cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
1566 M32R_OPERAND_DISP24),
1568 fragP->fr_cgen.opinfo,
1569 fragP->fr_symbol, fragP->fr_offset);
1572 #define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1574 md_number_to_chars (displacement, (valueT) addend,
1575 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1577 fragP->fr_fix += extension;
1580 /* Functions concerning relocs. */
1582 /* The location from which a PC relative jump should be calculated,
1583 given a PC relative reloc. */
1586 md_pcrel_from_section (fixP, sec)
1590 if (fixP->fx_addsy != (symbolS *) NULL
1591 && (! S_IS_DEFINED (fixP->fx_addsy)
1592 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
1594 /* The symbol is undefined (or is defined but not in this section).
1595 Let the linker figure it out. */
1599 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1602 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1603 Returns BFD_RELOC_NONE if no reloc type can be found.
1604 *FIXP may be modified if desired. */
1606 bfd_reloc_code_real_type
1607 md_cgen_lookup_reloc (insn, operand, fixP)
1608 const CGEN_INSN * insn;
1609 const CGEN_OPERAND * operand;
1612 switch (operand->type)
1614 case M32R_OPERAND_DISP8 : return BFD_RELOC_M32R_10_PCREL;
1615 case M32R_OPERAND_DISP16 : return BFD_RELOC_M32R_18_PCREL;
1616 case M32R_OPERAND_DISP24 : return BFD_RELOC_M32R_26_PCREL;
1617 case M32R_OPERAND_UIMM24 : return BFD_RELOC_M32R_24;
1618 case M32R_OPERAND_HI16 :
1619 case M32R_OPERAND_SLO16 :
1620 case M32R_OPERAND_ULO16 :
1621 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1622 if (fixP->fx_cgen.opinfo != 0)
1623 return fixP->fx_cgen.opinfo;
1625 default : /* avoid -Wall warning */
1628 return BFD_RELOC_NONE;
1631 /* Record a HI16 reloc for later matching with its LO16 cousin. */
1634 m32r_record_hi16 (reloc_type, fixP, seg)
1639 struct m32r_hi_fixup * hi_fixup;
1641 assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1642 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1644 hi_fixup = ((struct m32r_hi_fixup *)
1645 xmalloc (sizeof (struct m32r_hi_fixup)));
1646 hi_fixup->fixp = fixP;
1647 hi_fixup->seg = now_seg;
1648 hi_fixup->next = m32r_hi_fixup_list;
1650 m32r_hi_fixup_list = hi_fixup;
1653 /* Called while parsing an instruction to create a fixup.
1654 We need to check for HI16 relocs and queue them up for later sorting. */
1657 m32r_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
1660 const CGEN_INSN * insn;
1662 const CGEN_OPERAND * operand;
1666 fixS * fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
1667 operand, opinfo, exp);
1669 switch (operand->type)
1671 case M32R_OPERAND_HI16 :
1672 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1673 if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_SLO
1674 || fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_ULO)
1675 m32r_record_hi16 (fixP->fx_cgen.opinfo, fixP, now_seg);
1677 default : /* avoid -Wall warning */
1684 /* Return BFD reloc type from opinfo field in a fixS.
1685 It's tricky using fx_r_type in m32r_frob_file because the values
1686 are BFD_RELOC_UNUSED + operand number. */
1687 #define FX_OPINFO_R_TYPE(f) ((f)->fx_cgen.opinfo)
1689 /* Sort any unmatched HI16 relocs so that they immediately precede
1690 the corresponding LO16 reloc. This is called before md_apply_fix and
1696 struct m32r_hi_fixup * l;
1698 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
1700 segment_info_type * seginfo;
1703 assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_SLO
1704 || FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_ULO);
1706 /* Check quickly whether the next fixup happens to be a matching low. */
1707 if (l->fixp->fx_next != NULL
1708 && FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_M32R_LO16
1709 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
1710 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
1713 /* Look through the fixups for this segment for a matching `low'.
1714 When we find one, move the high/shigh just in front of it. We do
1715 this in two passes. In the first pass, we try to find a
1716 unique `low'. In the second pass, we permit multiple high's
1717 relocs for a single `low'. */
1718 seginfo = seg_info (l->seg);
1719 for (pass = 0; pass < 2; pass++)
1725 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
1727 /* Check whether this is a `low' fixup which matches l->fixp. */
1728 if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_M32R_LO16
1729 && f->fx_addsy == l->fixp->fx_addsy
1730 && f->fx_offset == l->fixp->fx_offset
1733 || (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_SLO
1734 && FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_ULO)
1735 || prev->fx_addsy != f->fx_addsy
1736 || prev->fx_offset != f->fx_offset))
1740 /* Move l->fixp before f. */
1741 for (pf = &seginfo->fix_root;
1743 pf = & (* pf)->fx_next)
1744 assert (* pf != NULL);
1746 * pf = l->fixp->fx_next;
1748 l->fixp->fx_next = f;
1750 seginfo->fix_root = l->fixp;
1752 prev->fx_next = l->fixp;
1764 && warn_unmatched_high)
1765 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
1766 _("Unmatched high/shigh reloc"));
1771 /* See whether we need to force a relocation into the output file.
1772 This is used to force out switch and PC relative relocations when
1776 m32r_force_relocation (fix)
1779 if (fix->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1780 || fix->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1786 return (fix->fx_pcrel
1790 /* Write a value out to the object file, using the appropriate endianness. */
1793 md_number_to_chars (buf, val, n)
1798 if (target_big_endian)
1799 number_to_chars_bigendian (buf, val, n);
1801 number_to_chars_littleendian (buf, val, n);
1804 /* Turn a string in input_line_pointer into a floating point constant of type
1805 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1806 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1809 /* Equal to MAX_PRECISION in atof-ieee.c */
1810 #define MAX_LITTLENUMS 6
1813 md_atof (type, litP, sizeP)
1820 LITTLENUM_TYPE words [MAX_LITTLENUMS];
1822 char * atof_ieee ();
1840 /* FIXME: Some targets allow other format chars for bigger sizes here. */
1844 return _("Bad call to md_atof()");
1847 t = atof_ieee (input_line_pointer, type, words);
1849 input_line_pointer = t;
1850 * sizeP = prec * sizeof (LITTLENUM_TYPE);
1852 if (target_big_endian)
1854 for (i = 0; i < prec; i++)
1856 md_number_to_chars (litP, (valueT) words[i],
1857 sizeof (LITTLENUM_TYPE));
1858 litP += sizeof (LITTLENUM_TYPE);
1863 for (i = prec - 1; i >= 0; i--)
1865 md_number_to_chars (litP, (valueT) words[i],
1866 sizeof (LITTLENUM_TYPE));
1867 litP += sizeof (LITTLENUM_TYPE);
1875 m32r_elf_section_change_hook ()
1877 /* If we have reached the end of a section and we have just emitted a
1878 16 bit insn, then emit a nop to make sure that the section ends on
1879 a 32 bit boundary. */
1881 if (prev_insn.insn || seen_relaxable_p)
1882 (void) m32r_fill_insn (0);
1885 /* Return true if can adjust the reloc to be relative to its section
1886 (such as .data) instead of relative to some symbol. */
1889 m32r_fix_adjustable (fixP)
1893 bfd_reloc_code_real_type reloc_type;
1895 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
1897 const CGEN_INSN *insn = NULL;
1898 int opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
1899 const CGEN_OPERAND *operand = cgen_operand_lookup_by_num(gas_cgen_cpu_desc, opindex);
1900 reloc_type = md_cgen_lookup_reloc (insn, operand, fixP);
1903 reloc_type = fixP->fx_r_type;
1905 if (fixP->fx_addsy == NULL)
1908 /* Prevent all adjustments to global symbols. */
1909 if (S_IS_EXTERN (fixP->fx_addsy))
1911 if (S_IS_WEAK (fixP->fx_addsy))
1914 /* We need the symbol name for the VTABLE entries */
1915 if (reloc_type == BFD_RELOC_VTABLE_INHERIT
1916 || reloc_type == BFD_RELOC_VTABLE_ENTRY)