1 /* tc-m32r.c -- Assembler for the Mitsubishi M32R.
2 Copyright (C) 1996, 1997, 1998 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. */
29 /* Linked list of symbols that are debugging symbols to be defined as the
30 beginning of the current instruction. */
31 typedef struct sym_link
33 struct sym_link *next;
37 static sym_linkS *debug_sym_link = (sym_linkS *)0;
39 /* Structure to hold all of the different components describing an individual instruction. */
42 const CGEN_INSN * insn;
43 const CGEN_INSN * orig_insn;
46 cgen_insn_t buffer [CGEN_MAX_INSN_SIZE / sizeof (cgen_insn_t)];
48 char buffer [CGEN_MAX_INSN_SIZE];
53 fixS * fixups [CGEN_MAX_FIXUPS];
54 int indices [MAX_OPERAND_INSTANCES];
55 sym_linkS *debug_sym_link;
59 /* prev_insn.insn is non-null if last insn was a 16 bit insn on a 32 bit
60 boundary (i.e. was the first of two 16 bit insns). */
61 static m32r_insn prev_insn;
63 /* Non-zero if we've seen a relaxable insn since the last 32 bit
65 static int seen_relaxable_p = 0;
67 /* Non-zero if -relax specified, in which case sufficient relocs are output
68 for the linker to do relaxing.
69 We do simple forms of relaxing internally, but they are always done.
70 This flag does not apply to them. */
71 static int m32r_relax;
73 /* If non-NULL, pointer to cpu description file to read.
74 This allows runtime additions to the assembler. */
75 static char * m32r_cpu_desc;
77 /* start-sanitize-m32rx */
78 /* Non-zero if --m32rx has been specified, in which case support for the
79 extended M32RX instruction set should be enabled. */
80 static int enable_m32rx = 0;
82 /* Non-zero if --enable-special has been specified, in which case support for
83 the special M32RX instruction set should be enabled. */
84 static int enable_special = 0;
86 /* Non-zero if the programmer should be warned when an explicit parallel
87 instruction might have constraint violations. */
88 static int warn_explicit_parallel_conflicts = 1;
90 /* Non-zero if insns can be made parallel. */
92 /* end-sanitize-m32rx */
94 /* stuff for .scomm symbols. */
95 static segT sbss_section;
96 static asection scom_section;
97 static asymbol scom_symbol;
99 const char comment_chars[] = ";";
100 const char line_comment_chars[] = "#";
101 const char line_separator_chars[] = "";
102 const char EXP_CHARS[] = "eE";
103 const char FLT_CHARS[] = "dD";
105 /* Relocations against symbols are done in two
106 parts, with a HI relocation and a LO relocation. Each relocation
107 has only 16 bits of space to store an addend. This means that in
108 order for the linker to handle carries correctly, it must be able
109 to locate both the HI and the LO relocation. This means that the
110 relocations must appear in order in the relocation table.
112 In order to implement this, we keep track of each unmatched HI
113 relocation. We then sort them so that they immediately precede the
114 corresponding LO relocation. */
118 struct m32r_hi_fixup * next; /* Next HI fixup. */
119 fixS * fixp; /* This fixup. */
120 segT seg; /* The section this fixup is in. */
124 /* The list of unmatched HI relocs. */
126 static struct m32r_hi_fixup * m32r_hi_fixup_list;
129 /* start-sanitize-m32rx */
136 if (stdoutput != NULL)
137 bfd_set_arch_mach (stdoutput, TARGET_ARCH,
138 enable_m32rx ? bfd_mach_m32rx : bfd_mach_m32r);
140 /* end-sanitize-m32rx */
142 #define M32R_SHORTOPTS ""
143 /* start-sanitize-m32rx */
144 #undef M32R_SHORTOPTS
145 #define M32R_SHORTOPTS "O"
146 /* end-sanitize-m32rx */
147 const char * md_shortopts = M32R_SHORTOPTS;
149 struct option md_longopts[] =
151 /* start-sanitize-m32rx */
152 #define OPTION_M32RX (OPTION_MD_BASE)
153 {"m32rx", no_argument, NULL, OPTION_M32RX},
154 #define OPTION_WARN (OPTION_MD_BASE + 1)
155 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN},
156 {"Wp", no_argument, NULL, OPTION_WARN},
157 #define OPTION_NO_WARN (OPTION_MD_BASE + 2)
158 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN},
159 {"Wnp", no_argument, NULL, OPTION_NO_WARN},
160 #define OPTION_SPECIAL (OPTION_MD_BASE + 3)
161 {"enable-special", no_argument, NULL, OPTION_SPECIAL},
162 /* end-sanitize-m32rx */
164 #if 0 /* not supported yet */
165 #define OPTION_RELAX (OPTION_MD_BASE + 4)
166 {"relax", no_argument, NULL, OPTION_RELAX},
167 #define OPTION_CPU_DESC (OPTION_MD_BASE + 5)
168 {"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
171 {NULL, no_argument, NULL, 0}
173 size_t md_longopts_size = sizeof (md_longopts);
176 md_parse_option (c, arg)
182 /* start-sanitize-m32rx */
192 warn_explicit_parallel_conflicts = 1;
196 warn_explicit_parallel_conflicts = 0;
203 /* end-sanitize-m32rx */
205 #if 0 /* not supported yet */
209 case OPTION_CPU_DESC:
220 md_show_usage (stream)
223 /* start-sanitize-m32rx */
224 fprintf (stream, _("M32R/X specific command line options:\n"));
225 fprintf (stream, _("\
226 --m32rx support the extended m32rx instruction set\n"));
227 fprintf (stream, _("\
228 --enable-special support the special m32rx instructions\n"));
230 fprintf (stream, _("\
231 -O try to combine instructions in parallel\n"));
233 fprintf (stream, _("\
234 --warn-explicit-parallel-conflicts warn when parallel instrucitons violate contraints\n"));
235 fprintf (stream, _("\
236 --no-warn-explicit-parallel-conflicts do not warn when parallel instrucitons violate contraints\n"));
237 fprintf (stream, _("\
238 --Wp synonym for --warn-explicit-parallel-conflicts\n"));
239 fprintf (stream, _("\
240 --Wnp synonym for --no-warn-explicit-parallel-conflicts\n"));
241 /* end-sanitize-m32rx */
244 fprintf (stream, _("\
245 --relax create linker relaxable code\n"));
246 fprintf (stream, _("\
247 --cpu-desc provide runtime cpu description file\n"));
251 static void fill_insn PARAMS ((int));
252 static void m32r_scomm PARAMS ((int));
253 static void debug_sym PARAMS ((int));
254 static void expand_debug_syms PARAMS ((sym_linkS *, int));
256 /* Set by md_assemble for use by m32r_fill_insn. */
257 static subsegT prev_subseg;
258 static segT prev_seg;
260 /* The target specific pseudo-ops which we support. */
261 const pseudo_typeS md_pseudo_table[] =
264 { "fillinsn", fill_insn, 0 },
265 { "scomm", m32r_scomm, 0 },
266 { "debugsym", debug_sym, 0 },
267 /* start-sanitize-m32rx */
268 { "m32r", allow_m32rx, 0 },
269 { "m32rx", allow_m32rx, 1 },
270 /* end-sanitize-m32rx */
274 /* FIXME: Should be machine generated. */
275 #define NOP_INSN 0x7000
276 #define PAR_NOP_INSN 0xf000 /* can only be used in 2nd slot */
278 /* When we align the .text section, insert the correct NOP pattern.
279 N is the power of 2 alignment. LEN is the length of pattern FILL.
280 MAX is the maximum number of characters to skip when doing the alignment,
281 or 0 if there is no maximum. */
284 m32r_do_align (n, fill, len, max)
290 if ((fill == NULL || (* fill == 0 && len == 1))
291 && (now_seg->flags & SEC_CODE) != 0
292 /* Only do this special handling if aligning to at least a
295 /* Only do this special handling if we're allowed to emit at
297 && (max == 0 || max > 1))
299 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
302 /* First align to a 2 byte boundary, in case there is an odd .byte. */
303 /* FIXME: How much memory will cause gas to use when assembling a big
304 program? Perhaps we can avoid the frag_align call? */
305 frag_align (1, 0, 0);
307 /* Next align to a 4 byte boundary (we know n >= 2) using a parallel
309 frag_align_pattern (2, nop_pattern, sizeof nop_pattern, 0);
310 /* If doing larger alignments use a repeating sequence of appropriate
314 static const unsigned char multi_nop_pattern[] =
315 { 0x70, 0x00, 0xf0, 0x00 };
316 frag_align_pattern (n, multi_nop_pattern, sizeof multi_nop_pattern,
326 assemble_nop (opcode)
329 char * f = frag_more (2);
330 md_number_to_chars (f, opcode, 2);
333 /* If the last instruction was the first of 2 16 bit insns,
334 output a nop to move the PC to a 32 bit boundary.
336 This is done via an alignment specification since branch relaxing
337 may make it unnecessary.
339 Internally, we need to output one of these each time a 32 bit insn is
340 seen after an insn that is relaxable. */
346 (void) m32r_do_align (2, NULL, 0, 0);
347 prev_insn.insn = NULL;
348 seen_relaxable_p = 0;
351 /* Record the symbol so that when we output the insn, we can create
352 a symbol that is at the start of the instruction. This is used
353 to emit the label for the start of a breakpoint without causing
354 the assembler to emit a NOP if the previous instruction was a
355 16 bit instruction. */
363 register char *end_name;
364 register symbolS *symbolP;
365 register sym_linkS *link;
367 name = input_line_pointer;
368 delim = get_symbol_end ();
369 end_name = input_line_pointer;
371 if ((symbolP = symbol_find (name)) == NULL
372 && (symbolP = md_undefined_symbol (name)) == NULL)
374 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
377 symbol_table_insert (symbolP);
378 if (S_IS_DEFINED (symbolP) && S_GET_SEGMENT (symbolP) != reg_section)
379 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
383 link = (sym_linkS *) xmalloc (sizeof (sym_linkS));
384 link->symbol = symbolP;
385 link->next = debug_sym_link;
386 debug_sym_link = link;
391 demand_empty_rest_of_line ();
394 /* Second pass to expanding the debug symbols, go through linked
395 list of symbols and reassign the address. */
398 expand_debug_syms (syms, align)
402 char *save_input_line = input_line_pointer;
403 sym_linkS *next_syms;
409 (void) m32r_do_align (align, NULL, 0, 0);
410 for (; syms != (sym_linkS *)0; syms = next_syms)
412 symbolS *symbolP = syms->symbol;
413 next_syms = syms->next;
414 input_line_pointer = ".\n";
415 pseudo_set (symbolP);
419 input_line_pointer = save_input_line;
422 /* Cover function to fill_insn called after a label and at end of assembly.
424 The result is always 1: we're called in a conditional to see if the
425 current line is a label. */
428 m32r_fill_insn (done)
431 if (prev_seg != NULL)
434 subsegT subseg = now_subseg;
436 subseg_set (prev_seg, prev_subseg);
440 subseg_set (seg, subseg);
453 /* Initialize the `cgen' interface. */
455 /* This is a callback from cgen to gas to parse operands. */
456 cgen_parse_operand_fn = cgen_parse_operand;
458 /* Set the machine number and endian. */
459 CGEN_SYM (init_asm) (0 /* mach number */,
461 CGEN_ENDIAN_BIG : CGEN_ENDIAN_LITTLE);
463 #if 0 /* not supported yet */
464 /* If a runtime cpu description file was provided, parse it. */
465 if (m32r_cpu_desc != NULL)
469 errmsg = cgen_read_cpu_file (m32r_cpu_desc);
471 as_bad ("%s: %s", m32r_cpu_desc, errmsg);
475 /* Save the current subseg so we can restore it [it's the default one and
476 we don't want the initial section to be .sbss]. */
480 /* The sbss section is for local .scomm symbols. */
481 sbss_section = subseg_new (".sbss", 0);
483 /* This is copied from perform_an_assembly_pass. */
484 applicable = bfd_applicable_section_flags (stdoutput);
485 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
487 #if 0 /* What does this do? [see perform_an_assembly_pass] */
488 seg_info (bss_section)->bss = 1;
491 subseg_set (seg, subseg);
493 /* We must construct a fake section similar to bfd_com_section
494 but with the name .scommon. */
495 scom_section = bfd_com_section;
496 scom_section.name = ".scommon";
497 scom_section.output_section = & scom_section;
498 scom_section.symbol = & scom_symbol;
499 scom_section.symbol_ptr_ptr = & scom_section.symbol;
500 scom_symbol = * bfd_com_section.symbol;
501 scom_symbol.name = ".scommon";
502 scom_symbol.section = & scom_section;
504 /* start-sanitize-m32rx */
505 allow_m32rx (enable_m32rx);
506 /* end-sanitize-m32rx */
509 /* start-sanitize-m32rx */
511 #define OPERAND_IS_COND_BIT(operand, indices, index) \
512 (CGEN_OPERAND_INSTANCE_HW (operand)->type == HW_H_COND \
513 || (CGEN_OPERAND_INSTANCE_HW (operand)->type == HW_H_CR \
514 && (indices [index] == 0 || indices [index] == 1)))
516 /* Returns true if an output of instruction 'a' is referenced by an operand
517 of instruction 'b'. If 'check_outputs' is true then b's outputs are
518 checked, otherwise its inputs are examined. */
521 first_writes_to_seconds_operands (a, b, check_outputs)
524 const int check_outputs;
526 const CGEN_OPERAND_INSTANCE * a_operands = CGEN_INSN_OPERANDS (a->insn);
527 const CGEN_OPERAND_INSTANCE * b_ops = CGEN_INSN_OPERANDS (b->insn);
530 /* If at least one of the instructions takes no operands, then there is
531 nothing to check. There really are instructions without operands,
533 if (a_operands == NULL || b_ops == NULL)
536 /* Scan the operand list of 'a' looking for an output operand. */
538 CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END;
539 a_index ++, a_operands ++)
541 if (CGEN_OPERAND_INSTANCE_TYPE (a_operands) == CGEN_OPERAND_INSTANCE_OUTPUT)
544 const CGEN_OPERAND_INSTANCE * b_operands = b_ops;
547 The Condition bit 'C' is a shadow of the CBR register (control
548 register 1) and also a shadow of bit 31 of the program status
549 word (control register 0). For now this is handled here, rather
552 if (OPERAND_IS_COND_BIT (a_operands, a->indices, a_index))
554 /* Scan operand list of 'b' looking for another reference to the
555 condition bit, which goes in the right direction. */
557 CGEN_OPERAND_INSTANCE_TYPE (b_operands) != CGEN_OPERAND_INSTANCE_END;
558 b_index ++, b_operands ++)
560 if ((CGEN_OPERAND_INSTANCE_TYPE (b_operands) ==
561 (check_outputs ? CGEN_OPERAND_INSTANCE_OUTPUT : CGEN_OPERAND_INSTANCE_INPUT))
562 && OPERAND_IS_COND_BIT (b_operands, b->indices, b_index))
568 /* Scan operand list of 'b' looking for an operand that references
569 the same hardware element, and which goes in the right direction. */
571 CGEN_OPERAND_INSTANCE_TYPE (b_operands) != CGEN_OPERAND_INSTANCE_END;
572 b_index ++, b_operands ++)
574 if ((CGEN_OPERAND_INSTANCE_TYPE (b_operands) ==
575 (check_outputs ? CGEN_OPERAND_INSTANCE_OUTPUT : CGEN_OPERAND_INSTANCE_INPUT))
576 && (CGEN_OPERAND_INSTANCE_HW (b_operands) == CGEN_OPERAND_INSTANCE_HW (a_operands))
577 && (a->indices [a_index] == b->indices [b_index]))
587 /* Returns true if the insn can (potentially) alter the program counter. */
593 #if 0 /* Once PC operands are working.... */
594 const CGEN_OPERAND_INSTANCE * a_operands == CGEN_INSN_OPERANDS (a->insn);
596 if (a_operands == NULL)
599 while (CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END)
601 if (CGEN_OPERAND_INSTANCE_OPERAND (a_operands) != NULL
602 && CGEN_OPERAND_INDEX (CGEN_OPERAND_INSTANCE_OPERAND (a_operands)) == M32R_OPERAND_PC)
608 if (CGEN_INSN_ATTR (a->insn, CGEN_INSN_UNCOND_CTI)
609 || CGEN_INSN_ATTR (a->insn, CGEN_INSN_COND_CTI))
615 /* Returns NULL if the two 16 bit insns can be executed in parallel,
616 otherwise it returns a pointer to an error message explaining why not. */
619 can_make_parallel (a, b)
626 /* Make sure the instructions are the right length. */
627 if ( CGEN_FIELDS_BITSIZE (& a->fields) != 16
628 || CGEN_FIELDS_BITSIZE (& b->fields) != 16)
631 if (first_writes_to_seconds_operands (a, b, true))
632 return _("Instructions write to the same destination register.");
634 a_pipe = CGEN_INSN_ATTR (a->insn, CGEN_INSN_PIPE);
635 b_pipe = CGEN_INSN_ATTR (b->insn, CGEN_INSN_PIPE);
637 /* Make sure that the instructions use the correct execution pipelines. */
638 if ( a_pipe == PIPE_NONE
639 || b_pipe == PIPE_NONE)
640 return _("Instructions do not use parallel execution pipelines.");
642 /* Leave this test for last, since it is the only test that can
643 go away if the instructions are swapped, and we want to make
644 sure that any other errors are detected before this happens. */
645 if ( a_pipe == PIPE_S
647 return _("Instructions share the same execution pipeline");
655 make_parallel (buffer)
656 cgen_insn_t * buffer;
658 /* Force the top bit of the second insn to be set. */
662 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
664 value = bfd_getb16 ((bfd_byte *) buffer);
666 bfd_putb16 (value, (char *) buffer);
670 value = bfd_getl16 ((bfd_byte *) buffer);
672 bfd_putl16 (value, (char *) buffer);
679 make_parallel (buffer)
682 /* Force the top bit of the second insn to be set. */
684 buffer [CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG ? 0 : 1] |= 0x80;
687 #endif /* ! CGEN_INT_INSN */
690 assemble_parallel_insn (str, str2)
699 * str2 = 0; /* Seperate the two instructions. */
701 /* If there was a previous 16 bit insn, then fill the following 16 bit slot,
702 so that the parallel instruction will start on a 32 bit boundary. */
706 first.debug_sym_link = debug_sym_link;
707 debug_sym_link = (sym_linkS *)0;
709 /* Parse the first instruction. */
710 if (! (first.insn = CGEN_SYM (assemble_insn)
711 (str, & first.fields, first.buffer, & errmsg)))
718 && CGEN_INSN_ATTR (first.insn, CGEN_INSN_SPECIAL))
720 /* xgettext:c-format */
721 as_bad (_("unknown instruction '%s'"), str);
725 else if (! enable_m32rx
726 /* FIXME: Need standard macro to perform this test. */
727 && CGEN_INSN_ATTR (first.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
729 /* xgettext:c-format */
730 as_bad (_("instruction '%s' is for the M32RX only"), str);
735 /* Check to see if this is an allowable parallel insn. */
736 if (CGEN_INSN_ATTR (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
738 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
742 *str2 = '|'; /* Restore the original assembly text, just in case it is needed. */
743 str3 = str; /* Save the original string pointer. */
744 str = str2 + 2; /* Advanced past the parsed string. */
745 str2 = str3; /* Remember the entire string in case it is needed for error messages. */
747 /* Preserve any fixups that have been generated and reset the list to empty. */
750 /* Get the indices of the operands of the instruction. */
751 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
752 doesn't seem right. Perhaps allow passing fields like we do insn. */
753 /* FIXME: ALIAS insns do not have operands, so we use this function
754 to find the equivalent insn and overwrite the value stored in our
755 structure. We still need the original insn, however, since this
756 may have certain attributes that are not present in the unaliased
757 version (eg relaxability). When aliases behave differently this
758 may have to change. */
759 first.orig_insn = first.insn;
760 first.insn = m32r_cgen_lookup_get_insn_operands (NULL,
761 bfd_getb16 ((char *) first.buffer),
764 if (first.insn == NULL)
765 as_fatal (_("internal error: m32r_cgen_lookup_get_insn_operands failed for first insn"));
767 second.debug_sym_link = NULL;
769 /* Parse the second instruction. */
770 if (! (second.insn = CGEN_SYM (assemble_insn)
771 (str, & second.fields, second.buffer, & errmsg)))
779 && CGEN_INSN_ATTR (second.insn, CGEN_INSN_SPECIAL))
781 /* xgettext:c-format */
782 as_bad (_("unknown instruction '%s'"), str);
786 else if (! enable_m32rx
787 && CGEN_INSN_ATTR (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
789 /* xgettext:c-format */
790 as_bad (_("instruction '%s' is for the M32RX only"), str);
794 /* Check to see if this is an allowable parallel insn. */
795 if (CGEN_INSN_ATTR (second.insn, CGEN_INSN_PIPE) == PIPE_NONE)
797 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
803 if (CGEN_INSN_NUM (first.insn) != M32R_INSN_NOP
804 && CGEN_INSN_NUM (second.insn) != M32R_INSN_NOP)
806 /* xgettext:c-format */
807 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2);
812 /* Get the indices of the operands of the instruction. */
813 second.orig_insn = second.insn;
814 second.insn = m32r_cgen_lookup_get_insn_operands (NULL,
815 bfd_getb16 ((char *) second.buffer),
818 if (second.insn == NULL)
819 as_fatal (_("internal error: m32r_cgen_lookup_get_insn_operands failed for second insn"));
821 /* We assume that if the first instruction writes to a register that is
822 read by the second instruction it is because the programmer intended
823 this to happen, (after all they have explicitly requested that these
824 two instructions be executed in parallel). Although if the global
825 variable warn_explicit_parallel_conflicts is true then we do generate
826 a warning message. Similarly we assume that parallel branch and jump
827 instructions are deliberate and should not produce errors. */
829 if (warn_explicit_parallel_conflicts)
831 if (first_writes_to_seconds_operands (& first, & second, false))
832 /* xgettext:c-format */
833 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2);
835 if (first_writes_to_seconds_operands (& second, & first, false))
836 /* xgettext:c-format */
837 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2);
840 if ((errmsg = (char *) can_make_parallel (& first, & second)) == NULL)
842 /* Get the fixups for the first instruction. */
846 expand_debug_syms (first.debug_sym_link, 1);
847 cgen_asm_finish_insn (first.orig_insn, first.buffer,
848 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
850 /* Force the top bit of the second insn to be set. */
851 make_parallel (second.buffer);
853 /* Get its fixups. */
854 cgen_restore_fixups ();
857 expand_debug_syms (second.debug_sym_link, 1);
858 cgen_asm_finish_insn (second.orig_insn, second.buffer,
859 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
861 /* Try swapping the instructions to see if they work that way. */
862 else if (can_make_parallel (& second, & first) == NULL)
864 /* Write out the second instruction first. */
865 expand_debug_syms (second.debug_sym_link, 1);
866 cgen_asm_finish_insn (second.orig_insn, second.buffer,
867 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
869 /* Force the top bit of the first instruction to be set. */
870 make_parallel (first.buffer);
872 /* Get the fixups for the first instruction. */
873 cgen_restore_fixups ();
875 /* Write out the first instruction. */
876 expand_debug_syms (first.debug_sym_link, 1);
877 cgen_asm_finish_insn (first.orig_insn, first.buffer,
878 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
882 as_bad ("'%s': %s", str2, errmsg);
886 /* Set these so m32r_fill_insn can use them. */
888 prev_subseg = now_subseg;
891 /* end-sanitize-m32rx */
902 /* Initialize GAS's cgen interface for a new instruction. */
903 cgen_asm_init_parse ();
905 /* start-sanitize-m32rx */
906 /* Look for a parallel instruction seperator. */
907 if ((str2 = strstr (str, "||")) != NULL)
909 assemble_parallel_insn (str, str2);
912 /* end-sanitize-m32rx */
914 insn.debug_sym_link = debug_sym_link;
915 debug_sym_link = (sym_linkS *)0;
917 insn.insn = CGEN_SYM (assemble_insn) (str, & insn.fields, insn.buffer, & errmsg);
924 /* start-sanitize-m32rx */
926 && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_SPECIAL))
928 /* xgettext:c-format */
929 as_bad (_("unknown instruction '%s'"), str);
933 else if (! enable_m32rx
934 && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
936 /* xgettext:c-format */
937 as_bad (_("instruction '%s' is for the M32RX only"), str);
940 /* end-sanitize-m32rx */
942 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
944 /* 32 bit insns must live on 32 bit boundaries. */
945 if (prev_insn.insn || seen_relaxable_p)
947 /* ??? If calling fill_insn too many times turns us into a memory
948 pig, can we call assemble_nop instead of !seen_relaxable_p? */
952 expand_debug_syms (insn.debug_sym_link, 2);
954 /* Doesn't really matter what we pass for RELAX_P here. */
955 cgen_asm_finish_insn (insn.insn, insn.buffer,
956 CGEN_FIELDS_BITSIZE (& insn.fields), 1, NULL);
960 int on_32bit_boundary_p;
961 /* start-sanitize-m32rx */
963 /* end-sanitize-m32rx */
965 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
968 insn.orig_insn = insn.insn;
969 /* start-sanitize-m32rx */
972 /* Get the indices of the operands of the instruction.
973 FIXME: See assemble_parallel for notes on orig_insn. */
974 insn.insn = m32r_cgen_lookup_get_insn_operands (NULL,
975 bfd_getb16 ((char *) insn.buffer),
978 if (insn.insn == NULL)
979 as_fatal (_("internal error: m32r_cgen_get_insn_operands failed"));
981 /* end-sanitize-m32rx */
983 /* Compute whether we're on a 32 bit boundary or not.
984 prev_insn.insn is NULL when we're on a 32 bit boundary. */
985 on_32bit_boundary_p = prev_insn.insn == NULL;
987 /* start-sanitize-m32rx */
988 /* Look to see if this instruction can be combined with the
989 previous instruction to make one, parallel, 32 bit instruction.
990 If the previous instruction (potentially) changed the flow of
991 program control, then it cannot be combined with the current
992 instruction. If the current instruction is relaxable, then it
993 might be replaced with a longer version, so we cannot combine it.
994 Also if the output of the previous instruction is used as an
995 input to the current instruction then it cannot be combined.
996 Otherwise call can_make_parallel() with both orderings of the
997 instructions to see if they can be combined. */
998 if ( ! on_32bit_boundary_p
1001 && CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_RELAXABLE) == 0
1002 && ! writes_to_pc (& prev_insn)
1003 && ! first_writes_to_seconds_operands (& prev_insn, &insn, false)
1006 if (can_make_parallel (& prev_insn, & insn) == NULL)
1007 make_parallel (insn.buffer);
1008 else if (can_make_parallel (& insn, & prev_insn) == NULL)
1011 /* end-sanitize-m32rx */
1013 expand_debug_syms (insn.debug_sym_link, 1);
1019 /* Ensure each pair of 16 bit insns is in the same frag. */
1022 cgen_asm_finish_insn (insn.orig_insn, insn.buffer,
1023 CGEN_FIELDS_BITSIZE (& insn.fields),
1024 1 /*relax_p*/, &fi);
1025 insn.addr = fi.addr;
1026 insn.frag = fi.frag;
1027 insn.num_fixups = fi.num_fixups;
1028 for (i = 0; i < fi.num_fixups; ++i)
1029 insn.fixups[i] = fi.fixups[i];
1032 /* start-sanitize-m32rx */
1037 #define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1039 /* Swap the two insns */
1040 SWAP_BYTES (prev_insn.addr [0], insn.addr [0]);
1041 SWAP_BYTES (prev_insn.addr [1], insn.addr [1]);
1043 make_parallel (insn.addr);
1045 /* Swap any relaxable frags recorded for the two insns. */
1046 /* FIXME: Clarify. relaxation precludes parallel insns */
1047 if (prev_insn.frag->fr_opcode == prev_insn.addr)
1048 prev_insn.frag->fr_opcode = insn.addr;
1049 else if (insn.frag->fr_opcode == insn.addr)
1050 insn.frag->fr_opcode = prev_insn.addr;
1052 /* Update the addresses in any fixups.
1053 Note that we don't have to handle the case where each insn is in
1054 a different frag as we ensure they're in the same frag above. */
1055 for (i = 0; i < prev_insn.num_fixups; ++i)
1056 prev_insn.fixups[i]->fx_where += 2;
1057 for (i = 0; i < insn.num_fixups; ++i)
1058 insn.fixups[i]->fx_where -= 2;
1060 /* end-sanitize-m32rx */
1062 /* Keep track of whether we've seen a pair of 16 bit insns.
1063 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1064 if (on_32bit_boundary_p)
1067 prev_insn.insn = NULL;
1069 /* If the insn needs the following one to be on a 32 bit boundary
1070 (e.g. subroutine calls), fill this insn's slot. */
1071 if (on_32bit_boundary_p
1072 && CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_FILL_SLOT) != 0)
1075 /* If this is a relaxable insn (can be replaced with a larger version)
1076 mark the fact so that we can emit an alignment directive for a
1077 following 32 bit insn if we see one. */
1078 if (CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_RELAXABLE) != 0)
1079 seen_relaxable_p = 1;
1082 /* Set these so m32r_fill_insn can use them. */
1084 prev_subseg = now_subseg;
1087 /* The syntax in the manual says constants begin with '#'.
1088 We just ignore it. */
1091 md_operand (expressionP)
1092 expressionS * expressionP;
1094 if (* input_line_pointer == '#')
1096 input_line_pointer ++;
1097 expression (expressionP);
1102 md_section_align (segment, size)
1106 int align = bfd_get_section_alignment (stdoutput, segment);
1107 return ((size + (1 << align) - 1) & (-1 << align));
1111 md_undefined_symbol (name)
1117 /* .scomm pseudo-op handler.
1119 This is a new pseudo-op to handle putting objects in .scommon.
1120 By doing this the linker won't need to do any work and more importantly
1121 it removes the implicit -G arg necessary to correctly link the object file.
1128 register char * name;
1132 register symbolS * symbolP;
1136 name = input_line_pointer;
1137 c = get_symbol_end ();
1139 /* just after name is now '\0' */
1140 p = input_line_pointer;
1143 if (* input_line_pointer != ',')
1145 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1146 ignore_rest_of_line ();
1150 input_line_pointer ++; /* skip ',' */
1151 if ((size = get_absolute_expression ()) < 0)
1153 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size);
1154 ignore_rest_of_line ();
1158 /* The third argument to .scomm is the alignment. */
1159 if (* input_line_pointer != ',')
1163 ++ input_line_pointer;
1164 align = get_absolute_expression ();
1167 as_warn (_("ignoring bad alignment"));
1171 /* Convert to a power of 2 alignment. */
1174 for (align2 = 0; (align & 1) == 0; align >>= 1, ++ align2)
1178 as_bad (_("Common alignment not a power of 2"));
1179 ignore_rest_of_line ();
1187 symbolP = symbol_find_or_make (name);
1190 if (S_IS_DEFINED (symbolP))
1192 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1193 S_GET_NAME (symbolP));
1194 ignore_rest_of_line ();
1198 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1200 as_bad (_("Length of .scomm \"%s\" is already %ld. Not changed to %ld."),
1201 S_GET_NAME (symbolP),
1202 (long) S_GET_VALUE (symbolP),
1205 ignore_rest_of_line ();
1211 segT old_sec = now_seg;
1212 int old_subsec = now_subseg;
1215 record_alignment (sbss_section, align2);
1216 subseg_set (sbss_section, 0);
1219 frag_align (align2, 0, 0);
1221 if (S_GET_SEGMENT (symbolP) == sbss_section)
1222 symbolP->sy_frag->fr_symbol = 0;
1224 symbolP->sy_frag = frag_now;
1226 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1229 S_SET_SIZE (symbolP, size);
1230 S_SET_SEGMENT (symbolP, sbss_section);
1231 S_CLEAR_EXTERNAL (symbolP);
1232 subseg_set (old_sec, old_subsec);
1236 S_SET_VALUE (symbolP, (valueT) size);
1237 S_SET_ALIGN (symbolP, align2);
1238 S_SET_EXTERNAL (symbolP);
1239 S_SET_SEGMENT (symbolP, & scom_section);
1242 demand_empty_rest_of_line ();
1245 /* Interface to relax_segment. */
1247 /* FIXME: Build table by hand, get it working, then machine generate. */
1249 const relax_typeS md_relax_table[] =
1252 1) most positive reach of this state,
1253 2) most negative reach of this state,
1254 3) how many bytes this mode will add to the size of the current frag
1255 4) which index into the table to try if we can't fit into this one. */
1257 /* The first entry must be unused because an `rlx_more' value of zero ends
1261 /* The displacement used by GAS is from the end of the 2 byte insn,
1262 so we subtract 2 from the following. */
1263 /* 16 bit insn, 8 bit disp -> 10 bit range.
1264 This doesn't handle a branch in the right slot at the border:
1265 the "& -4" isn't taken into account. It's not important enough to
1266 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1268 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1269 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1270 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1271 /* Same thing, but with leading nop for alignment. */
1272 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1276 m32r_relax_frag (fragP, stretch)
1280 /* Address of branch insn. */
1281 long address = fragP->fr_address + fragP->fr_fix - 2;
1284 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1285 if (fragP->fr_subtype == 2)
1287 if ((address & 3) != 0)
1289 fragP->fr_subtype = 3;
1293 else if (fragP->fr_subtype == 3)
1295 if ((address & 3) == 0)
1297 fragP->fr_subtype = 2;
1303 growth = relax_frag (fragP, stretch);
1305 /* Long jump on odd halfword boundary? */
1306 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1308 fragP->fr_subtype = 3;
1316 /* Return an initial guess of the length by which a fragment must grow to
1317 hold a branch to reach its destination.
1318 Also updates fr_type/fr_subtype as necessary.
1320 Called just before doing relaxation.
1321 Any symbol that is now undefined will not become defined.
1322 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1323 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1324 Although it may not be explicit in the frag, pretend fr_var starts with a
1328 md_estimate_size_before_relax (fragP, segment)
1332 int old_fr_fix = fragP->fr_fix;
1333 char * opcode = fragP->fr_opcode;
1335 /* The only thing we have to handle here are symbols outside of the
1336 current segment. They may be undefined or in a different segment in
1337 which case linker scripts may place them anywhere.
1338 However, we can't finish the fragment here and emit the reloc as insn
1339 alignment requirements may move the insn about. */
1341 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
1343 /* The symbol is undefined in this segment.
1344 Change the relaxation subtype to the max allowable and leave
1345 all further handling to md_convert_frag. */
1346 fragP->fr_subtype = 2;
1348 #if 0 /* Can't use this, but leave in for illustration. */
1349 /* Change 16 bit insn to 32 bit insn. */
1352 /* Increase known (fixed) size of fragment. */
1355 /* Create a relocation for it. */
1356 fix_new (fragP, old_fr_fix, 4,
1358 fragP->fr_offset, 1 /* pcrel */,
1359 /* FIXME: Can't use a real BFD reloc here.
1360 cgen_md_apply_fix3 can't handle it. */
1361 BFD_RELOC_M32R_26_PCREL);
1363 /* Mark this fragment as finished. */
1367 const CGEN_INSN * insn;
1370 /* Update the recorded insn.
1371 Fortunately we don't have to look very far.
1372 FIXME: Change this to record in the instruction the next higher
1373 relaxable insn to use. */
1374 for (i = 0, insn = fragP->fr_cgen.insn; i < 4; i++, insn++)
1376 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1377 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
1379 && CGEN_INSN_ATTR (insn, CGEN_INSN_RELAX))
1385 fragP->fr_cgen.insn = insn;
1391 return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
1394 /* *fragP has been relaxed to its final size, and now needs to have
1395 the bytes inside it modified to conform to the new size.
1397 Called after relaxation is finished.
1398 fragP->fr_type == rs_machine_dependent.
1399 fragP->fr_subtype is the subtype of what the address relaxed to. */
1402 md_convert_frag (abfd, sec, fragP)
1408 char * displacement;
1414 opcode = fragP->fr_opcode;
1416 /* Address opcode resides at in file space. */
1417 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1419 switch (fragP->fr_subtype)
1423 displacement = & opcode[1];
1428 displacement = & opcode[1];
1431 opcode[2] = opcode[0] | 0x80;
1432 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1433 opcode_address += 2;
1435 displacement = & opcode[3];
1441 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1443 /* symbol must be resolved by linker */
1444 if (fragP->fr_offset & 3)
1445 as_warn (_("Addend to unresolved symbol not on word boundary."));
1446 addend = fragP->fr_offset >> 2;
1450 /* Address we want to reach in file space. */
1451 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
1452 target_address += fragP->fr_symbol->sy_frag->fr_address;
1453 addend = (target_address - (opcode_address & -4)) >> 2;
1456 /* Create a relocation for symbols that must be resolved by the linker.
1457 Otherwise output the completed insn. */
1459 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1461 assert (fragP->fr_subtype != 1);
1462 assert (fragP->fr_cgen.insn != 0);
1463 cgen_record_fixup (fragP,
1464 /* Offset of branch insn in frag. */
1465 fragP->fr_fix + extension - 4,
1466 fragP->fr_cgen.insn,
1468 /* FIXME: quick hack */
1470 CGEN_OPERAND_ENTRY (fragP->fr_cgen.opindex),
1472 CGEN_OPERAND_ENTRY (M32R_OPERAND_DISP24),
1474 fragP->fr_cgen.opinfo,
1475 fragP->fr_symbol, fragP->fr_offset);
1478 #define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1480 md_number_to_chars (displacement, (valueT) addend,
1481 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1483 fragP->fr_fix += extension;
1486 /* Functions concerning relocs. */
1488 /* The location from which a PC relative jump should be calculated,
1489 given a PC relative reloc. */
1492 md_pcrel_from_section (fixP, sec)
1496 if (fixP->fx_addsy != (symbolS *) NULL
1497 && (! S_IS_DEFINED (fixP->fx_addsy)
1498 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
1500 /* The symbol is undefined (or is defined but not in this section).
1501 Let the linker figure it out. */
1505 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1508 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1509 Returns BFD_RELOC_NONE if no reloc type can be found.
1510 *FIXP may be modified if desired. */
1512 bfd_reloc_code_real_type
1513 CGEN_SYM (lookup_reloc) (insn, operand, fixP)
1514 const CGEN_INSN * insn;
1515 const CGEN_OPERAND * operand;
1518 switch (CGEN_OPERAND_TYPE (operand))
1520 case M32R_OPERAND_DISP8 : return BFD_RELOC_M32R_10_PCREL;
1521 case M32R_OPERAND_DISP16 : return BFD_RELOC_M32R_18_PCREL;
1522 case M32R_OPERAND_DISP24 : return BFD_RELOC_M32R_26_PCREL;
1523 case M32R_OPERAND_UIMM24 : return BFD_RELOC_M32R_24;
1524 case M32R_OPERAND_HI16 :
1525 case M32R_OPERAND_SLO16 :
1526 case M32R_OPERAND_ULO16 :
1527 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1528 if (fixP->tc_fix_data.opinfo != 0)
1529 return fixP->tc_fix_data.opinfo;
1532 return BFD_RELOC_NONE;
1535 /* Record a HI16 reloc for later matching with its LO16 cousin. */
1538 m32r_record_hi16 (reloc_type, fixP, seg)
1543 struct m32r_hi_fixup * hi_fixup;
1545 assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1546 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1548 hi_fixup = ((struct m32r_hi_fixup *)
1549 xmalloc (sizeof (struct m32r_hi_fixup)));
1550 hi_fixup->fixp = fixP;
1551 hi_fixup->seg = now_seg;
1552 hi_fixup->next = m32r_hi_fixup_list;
1554 m32r_hi_fixup_list = hi_fixup;
1557 /* Called while parsing an instruction to create a fixup.
1558 We need to check for HI16 relocs and queue them up for later sorting. */
1561 m32r_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
1564 const CGEN_INSN * insn;
1566 const CGEN_OPERAND * operand;
1570 fixS * fixP = cgen_record_fixup_exp (frag, where, insn, length,
1571 operand, opinfo, exp);
1573 switch (CGEN_OPERAND_TYPE (operand))
1575 case M32R_OPERAND_HI16 :
1576 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1577 if (fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_SLO
1578 || fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_ULO)
1579 m32r_record_hi16 (fixP->tc_fix_data.opinfo, fixP, now_seg);
1586 /* Return BFD reloc type from opinfo field in a fixS.
1587 It's tricky using fx_r_type in m32r_frob_file because the values
1588 are BFD_RELOC_UNUSED + operand number. */
1589 #define FX_OPINFO_R_TYPE(f) ((f)->tc_fix_data.opinfo)
1591 /* Sort any unmatched HI16 relocs so that they immediately precede
1592 the corresponding LO16 reloc. This is called before md_apply_fix and
1598 struct m32r_hi_fixup * l;
1600 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
1602 segment_info_type * seginfo;
1605 assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_SLO
1606 || FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_ULO);
1608 /* Check quickly whether the next fixup happens to be a matching low. */
1609 if (l->fixp->fx_next != NULL
1610 && FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_M32R_LO16
1611 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
1612 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
1615 /* Look through the fixups for this segment for a matching `low'.
1616 When we find one, move the high/shigh just in front of it. We do
1617 this in two passes. In the first pass, we try to find a
1618 unique `low'. In the second pass, we permit multiple high's
1619 relocs for a single `low'. */
1620 seginfo = seg_info (l->seg);
1621 for (pass = 0; pass < 2; pass++)
1627 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
1629 /* Check whether this is a `low' fixup which matches l->fixp. */
1630 if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_M32R_LO16
1631 && f->fx_addsy == l->fixp->fx_addsy
1632 && f->fx_offset == l->fixp->fx_offset
1635 || (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_SLO
1636 && FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_ULO)
1637 || prev->fx_addsy != f->fx_addsy
1638 || prev->fx_offset != f->fx_offset))
1642 /* Move l->fixp before f. */
1643 for (pf = &seginfo->fix_root;
1645 pf = & (* pf)->fx_next)
1646 assert (* pf != NULL);
1648 * pf = l->fixp->fx_next;
1650 l->fixp->fx_next = f;
1652 seginfo->fix_root = l->fixp;
1654 prev->fx_next = l->fixp;
1666 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
1667 _("Unmatched high/shigh reloc"));
1672 /* See whether we need to force a relocation into the output file.
1673 This is used to force out switch and PC relative relocations when
1677 m32r_force_relocation (fix)
1683 return (fix->fx_pcrel
1687 /* Write a value out to the object file, using the appropriate endianness. */
1690 md_number_to_chars (buf, val, n)
1695 if (target_big_endian)
1696 number_to_chars_bigendian (buf, val, n);
1698 number_to_chars_littleendian (buf, val, n);
1701 /* Turn a string in input_line_pointer into a floating point constant of type
1702 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1703 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1706 /* Equal to MAX_PRECISION in atof-ieee.c */
1707 #define MAX_LITTLENUMS 6
1710 md_atof (type, litP, sizeP)
1717 LITTLENUM_TYPE words [MAX_LITTLENUMS];
1718 LITTLENUM_TYPE * wordP;
1720 char * atof_ieee ();
1738 /* FIXME: Some targets allow other format chars for bigger sizes here. */
1742 return _("Bad call to md_atof()");
1745 t = atof_ieee (input_line_pointer, type, words);
1747 input_line_pointer = t;
1748 * sizeP = prec * sizeof (LITTLENUM_TYPE);
1750 if (target_big_endian)
1752 for (i = 0; i < prec; i++)
1754 md_number_to_chars (litP, (valueT) words[i],
1755 sizeof (LITTLENUM_TYPE));
1756 litP += sizeof (LITTLENUM_TYPE);
1761 for (i = prec - 1; i >= 0; i--)
1763 md_number_to_chars (litP, (valueT) words[i],
1764 sizeof (LITTLENUM_TYPE));
1765 litP += sizeof (LITTLENUM_TYPE);
1773 m32r_elf_section_change_hook ()
1775 /* If we have reached the end of a section and we have just emitted a
1776 16 bit insn, then emit a nop to make sure that the section ends on
1777 a 32 bit boundary. */
1779 if (prev_insn.insn || seen_relaxable_p)
1780 (void) m32r_fill_insn (0);