1 /* tc-m32r.c -- Assembler for the Renesas M32R.
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "safe-ctype.h"
27 #include "opcodes/m32r-desc.h"
28 #include "opcodes/m32r-opc.h"
31 /* Linked list of symbols that are debugging symbols to be defined as the
32 beginning of the current instruction. */
33 typedef struct sym_link
35 struct sym_link
*next
;
39 static sym_linkS
*debug_sym_link
= (sym_linkS
*) 0;
41 /* Structure to hold all of the different components describing
42 an individual instruction. */
45 const CGEN_INSN
*insn
;
46 const CGEN_INSN
*orig_insn
;
49 CGEN_INSN_INT buffer
[1];
50 #define INSN_VALUE(buf) (*(buf))
52 unsigned char buffer
[CGEN_MAX_INSN_SIZE
];
53 #define INSN_VALUE(buf) (buf)
58 fixS
*fixups
[GAS_CGEN_MAX_FIXUPS
];
59 int indices
[MAX_OPERAND_INSTANCES
];
60 sym_linkS
*debug_sym_link
;
64 /* prev_insn.insn is non-null if last insn was a 16 bit insn on a 32 bit
65 boundary (i.e. was the first of two 16 bit insns). */
66 static m32r_insn prev_insn
;
68 /* Non-zero if we've seen a relaxable insn since the last 32 bit
70 static int seen_relaxable_p
= 0;
72 /* Non-zero if -relax specified, in which case sufficient relocs are output
73 for the linker to do relaxing.
74 We do simple forms of relaxing internally, but they are always done.
75 This flag does not apply to them. */
76 static int m32r_relax
;
79 /* Not supported yet. */
80 /* If non-NULL, pointer to cpu description file to read.
81 This allows runtime additions to the assembler. */
82 static const char *m32r_cpu_desc
;
85 /* Non-zero if warn when a high/shigh reloc has no matching low reloc.
86 Each high/shigh reloc must be paired with it's low cousin in order to
87 properly calculate the addend in a relocatable link (since there is a
88 potential carry from the low to the high/shigh).
89 This option is off by default though for user-written assembler code it
90 might make sense to make the default be on (i.e. have gcc pass a flag
91 to turn it off). This warning must not be on for GCC created code as
92 optimization may delete the low but not the high/shigh (at least we
93 shouldn't assume or require it to). */
94 static int warn_unmatched_high
= 0;
96 /* Non-zero if -m32rx has been specified, in which case support for the
97 extended M32RX instruction set should be enabled. */
98 static int enable_m32rx
= 0;
100 /* Non-zero if -m32rx -hidden has been specified, in which case support for
101 the special M32RX instruction set should be enabled. */
102 static int enable_special
= 0;
104 /* Non-zero if the programmer should be warned when an explicit parallel
105 instruction might have constraint violations. */
106 static int warn_explicit_parallel_conflicts
= 1;
108 /* Non-zero if insns can be made parallel. */
111 /* Stuff for .scomm symbols. */
112 static segT sbss_section
;
113 static asection scom_section
;
114 static asymbol scom_symbol
;
116 const char comment_chars
[] = ";";
117 const char line_comment_chars
[] = "#";
118 const char line_separator_chars
[] = "";
119 const char EXP_CHARS
[] = "eE";
120 const char FLT_CHARS
[] = "dD";
122 /* Relocations against symbols are done in two
123 parts, with a HI relocation and a LO relocation. Each relocation
124 has only 16 bits of space to store an addend. This means that in
125 order for the linker to handle carries correctly, it must be able
126 to locate both the HI and the LO relocation. This means that the
127 relocations must appear in order in the relocation table.
129 In order to implement this, we keep track of each unmatched HI
130 relocation. We then sort them so that they immediately precede the
131 corresponding LO relocation. */
136 struct m32r_hi_fixup
*next
;
141 /* The section this fixup is in. */
145 /* The list of unmatched HI relocs. */
147 static struct m32r_hi_fixup
*m32r_hi_fixup_list
;
149 static void allow_m32rx
PARAMS ((int));
157 if (stdoutput
!= NULL
)
158 bfd_set_arch_mach (stdoutput
, TARGET_ARCH
,
159 enable_m32rx
? bfd_mach_m32rx
: bfd_mach_m32r
);
162 #define M32R_SHORTOPTS "O"
164 const char *md_shortopts
= M32R_SHORTOPTS
;
166 struct option md_longopts
[] =
168 #define OPTION_M32R (OPTION_MD_BASE)
169 #define OPTION_M32RX (OPTION_M32R + 1)
170 #define OPTION_WARN_PARALLEL (OPTION_M32RX + 1)
171 #define OPTION_NO_WARN_PARALLEL (OPTION_WARN_PARALLEL + 1)
172 #define OPTION_SPECIAL (OPTION_NO_WARN_PARALLEL + 1)
173 #define OPTION_WARN_UNMATCHED (OPTION_SPECIAL + 1)
174 #define OPTION_NO_WARN_UNMATCHED (OPTION_WARN_UNMATCHED + 1)
175 {"m32r", no_argument
, NULL
, OPTION_M32R
},
176 {"m32rx", no_argument
, NULL
, OPTION_M32RX
},
177 {"warn-explicit-parallel-conflicts", no_argument
, NULL
, OPTION_WARN_PARALLEL
},
178 {"Wp", no_argument
, NULL
, OPTION_WARN_PARALLEL
},
179 {"no-warn-explicit-parallel-conflicts", no_argument
, NULL
, OPTION_NO_WARN_PARALLEL
},
180 {"Wnp", no_argument
, NULL
, OPTION_NO_WARN_PARALLEL
},
181 {"hidden", no_argument
, NULL
, OPTION_SPECIAL
},
182 /* Sigh. I guess all warnings must now have both variants. */
183 {"warn-unmatched-high", no_argument
, NULL
, OPTION_WARN_UNMATCHED
},
184 {"Wuh", no_argument
, NULL
, OPTION_WARN_UNMATCHED
},
185 {"no-warn-unmatched-high", no_argument
, NULL
, OPTION_NO_WARN_UNMATCHED
},
186 {"Wnuh", no_argument
, NULL
, OPTION_NO_WARN_UNMATCHED
},
189 /* Not supported yet. */
190 #define OPTION_RELAX (OPTION_NO_WARN_UNMATCHED + 1)
191 #define OPTION_CPU_DESC (OPTION_RELAX + 1)
192 {"relax", no_argument
, NULL
, OPTION_RELAX
},
193 {"cpu-desc", required_argument
, NULL
, OPTION_CPU_DESC
},
195 {NULL
, no_argument
, NULL
, 0}
198 size_t md_longopts_size
= sizeof (md_longopts
);
201 md_parse_option (c
, arg
)
203 char *arg ATTRIBUTE_UNUSED
;
219 case OPTION_WARN_PARALLEL
:
220 warn_explicit_parallel_conflicts
= 1;
223 case OPTION_NO_WARN_PARALLEL
:
224 warn_explicit_parallel_conflicts
= 0;
232 /* Pretend that we do not recognise this option. */
233 as_bad (_("Unrecognised option: -hidden"));
238 case OPTION_WARN_UNMATCHED
:
239 warn_unmatched_high
= 1;
242 case OPTION_NO_WARN_UNMATCHED
:
243 warn_unmatched_high
= 0;
247 /* Not supported yet. */
251 case OPTION_CPU_DESC
:
264 md_show_usage (stream
)
267 fprintf (stream
, _(" M32R specific command line options:\n"));
269 fprintf (stream
, _("\
270 -m32r disable support for the m32rx instruction set\n"));
271 fprintf (stream
, _("\
272 -m32rx support the extended m32rx instruction set\n"));
273 fprintf (stream
, _("\
274 -O try to combine instructions in parallel\n"));
276 fprintf (stream
, _("\
277 -warn-explicit-parallel-conflicts warn when parallel instructions\n"));
278 fprintf (stream
, _("\
279 violate contraints\n"));
280 fprintf (stream
, _("\
281 -no-warn-explicit-parallel-conflicts do not warn when parallel\n"));
282 fprintf (stream
, _("\
283 instructions violate contraints\n"));
284 fprintf (stream
, _("\
285 -Wp synonym for -warn-explicit-parallel-conflicts\n"));
286 fprintf (stream
, _("\
287 -Wnp synonym for -no-warn-explicit-parallel-conflicts\n"));
289 fprintf (stream
, _("\
290 -warn-unmatched-high warn when an (s)high reloc has no matching low reloc\n"));
291 fprintf (stream
, _("\
292 -no-warn-unmatched-high do not warn about missing low relocs\n"));
293 fprintf (stream
, _("\
294 -Wuh synonym for -warn-unmatched-high\n"));
295 fprintf (stream
, _("\
296 -Wnuh synonym for -no-warn-unmatched-high\n"));
299 fprintf (stream
, _("\
300 -relax create linker relaxable code\n"));
301 fprintf (stream
, _("\
302 -cpu-desc provide runtime cpu description file\n"));
306 static void fill_insn
PARAMS ((int));
307 static void m32r_scomm
PARAMS ((int));
308 static void debug_sym
PARAMS ((int));
309 static void expand_debug_syms
PARAMS ((sym_linkS
*, int));
311 /* Set by md_assemble for use by m32r_fill_insn. */
312 static subsegT prev_subseg
;
313 static segT prev_seg
;
315 /* The target specific pseudo-ops which we support. */
316 const pseudo_typeS md_pseudo_table
[] =
319 { "fillinsn", fill_insn
, 0 },
320 { "scomm", m32r_scomm
, 0 },
321 { "debugsym", debug_sym
, 0 },
322 /* Not documented as so far there is no need for them.... */
323 { "m32r", allow_m32rx
, 0 },
324 { "m32rx", allow_m32rx
, 1 },
328 /* FIXME: Should be machine generated. */
329 #define NOP_INSN 0x7000
330 #define PAR_NOP_INSN 0xf000 /* Can only be used in 2nd slot. */
332 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
333 of an rs_align_code fragment. */
336 m32r_handle_align (fragp
)
339 static const unsigned char nop_pattern
[] = { 0xf0, 0x00 };
340 static const unsigned char multi_nop_pattern
[] = { 0x70, 0x00, 0xf0, 0x00 };
345 if (fragp
->fr_type
!= rs_align_code
)
348 bytes
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
349 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
361 memcpy (p
, nop_pattern
, 2);
367 memcpy (p
, multi_nop_pattern
, 4);
369 fragp
->fr_fix
+= fix
;
373 /* If the last instruction was the first of 2 16 bit insns,
374 output a nop to move the PC to a 32 bit boundary.
376 This is done via an alignment specification since branch relaxing
377 may make it unnecessary.
379 Internally, we need to output one of these each time a 32 bit insn is
380 seen after an insn that is relaxable. */
384 int ignore ATTRIBUTE_UNUSED
;
386 frag_align_code (2, 0);
387 prev_insn
.insn
= NULL
;
388 seen_relaxable_p
= 0;
391 /* Record the symbol so that when we output the insn, we can create
392 a symbol that is at the start of the instruction. This is used
393 to emit the label for the start of a breakpoint without causing
394 the assembler to emit a NOP if the previous instruction was a
395 16 bit instruction. */
399 int ignore ATTRIBUTE_UNUSED
;
403 register char *end_name
;
404 register symbolS
*symbolP
;
405 register sym_linkS
*link
;
407 name
= input_line_pointer
;
408 delim
= get_symbol_end ();
409 end_name
= input_line_pointer
;
411 if ((symbolP
= symbol_find (name
)) == NULL
412 && (symbolP
= md_undefined_symbol (name
)) == NULL
)
414 symbolP
= symbol_new (name
, undefined_section
, 0, &zero_address_frag
);
417 symbol_table_insert (symbolP
);
418 if (S_IS_DEFINED (symbolP
) && S_GET_SEGMENT (symbolP
) != reg_section
)
419 /* xgettext:c-format */
420 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP
));
424 link
= (sym_linkS
*) xmalloc (sizeof (sym_linkS
));
425 link
->symbol
= symbolP
;
426 link
->next
= debug_sym_link
;
427 debug_sym_link
= link
;
428 symbol_get_obj (symbolP
)->local
= 1;
432 demand_empty_rest_of_line ();
435 /* Second pass to expanding the debug symbols, go through linked
436 list of symbols and reassign the address. */
439 expand_debug_syms (syms
, align
)
443 char *save_input_line
= input_line_pointer
;
444 sym_linkS
*next_syms
;
449 (void) frag_align_code (align
, 0);
450 for (; syms
!= (sym_linkS
*) 0; syms
= next_syms
)
452 symbolS
*symbolP
= syms
->symbol
;
453 next_syms
= syms
->next
;
454 input_line_pointer
= ".\n";
455 pseudo_set (symbolP
);
456 free ((char *) syms
);
459 input_line_pointer
= save_input_line
;
462 /* Cover function to fill_insn called after a label and at end of assembly.
463 The result is always 1: we're called in a conditional to see if the
464 current line is a label. */
467 m32r_fill_insn (done
)
470 if (prev_seg
!= NULL
)
473 subsegT subseg
= now_subseg
;
475 subseg_set (prev_seg
, prev_subseg
);
479 subseg_set (seg
, subseg
);
482 if (done
&& debug_sym_link
)
484 expand_debug_syms (debug_sym_link
, 1);
485 debug_sym_link
= (sym_linkS
*) 0;
498 /* Initialize the `cgen' interface. */
500 /* Set the machine number and endian. */
501 gas_cgen_cpu_desc
= m32r_cgen_cpu_open (CGEN_CPU_OPEN_MACHS
, 0,
502 CGEN_CPU_OPEN_ENDIAN
,
505 m32r_cgen_init_asm (gas_cgen_cpu_desc
);
507 /* The operand instance table is used during optimization to determine
508 which insns can be executed in parallel. It is also used to give
509 warnings regarding operand interference in parallel insns. */
510 m32r_cgen_init_opinst_table (gas_cgen_cpu_desc
);
512 /* This is a callback from cgen to gas to parse operands. */
513 cgen_set_parse_operand_fn (gas_cgen_cpu_desc
, gas_cgen_parse_operand
);
516 /* Not supported yet. */
517 /* If a runtime cpu description file was provided, parse it. */
518 if (m32r_cpu_desc
!= NULL
)
522 errmsg
= cgen_read_cpu_file (gas_cgen_cpu_desc
, m32r_cpu_desc
);
524 as_bad ("%s: %s", m32r_cpu_desc
, errmsg
);
528 /* Save the current subseg so we can restore it [it's the default one and
529 we don't want the initial section to be .sbss]. */
533 /* The sbss section is for local .scomm symbols. */
534 sbss_section
= subseg_new (".sbss", 0);
536 /* This is copied from perform_an_assembly_pass. */
537 applicable
= bfd_applicable_section_flags (stdoutput
);
538 bfd_set_section_flags (stdoutput
, sbss_section
, applicable
& SEC_ALLOC
);
541 /* What does this do? [see perform_an_assembly_pass] */
542 seg_info (bss_section
)->bss
= 1;
545 subseg_set (seg
, subseg
);
547 /* We must construct a fake section similar to bfd_com_section
548 but with the name .scommon. */
549 scom_section
= bfd_com_section
;
550 scom_section
.name
= ".scommon";
551 scom_section
.output_section
= &scom_section
;
552 scom_section
.symbol
= &scom_symbol
;
553 scom_section
.symbol_ptr_ptr
= &scom_section
.symbol
;
554 scom_symbol
= *bfd_com_section
.symbol
;
555 scom_symbol
.name
= ".scommon";
556 scom_symbol
.section
= &scom_section
;
558 allow_m32rx (enable_m32rx
);
560 gas_cgen_initialize_saved_fixups_array ();
563 #define OPERAND_IS_COND_BIT(operand, indices, index) \
564 ((operand)->hw_type == HW_H_COND \
565 || ((operand)->hw_type == HW_H_PSW) \
566 || ((operand)->hw_type == HW_H_CR \
567 && (indices [index] == 0 || indices [index] == 1)))
569 /* Returns true if an output of instruction 'a' is referenced by an operand
570 of instruction 'b'. If 'check_outputs' is true then b's outputs are
571 checked, otherwise its inputs are examined. */
573 static int first_writes_to_seconds_operands
574 PARAMS ((m32r_insn
*, m32r_insn
*, const int));
577 first_writes_to_seconds_operands (a
, b
, check_outputs
)
580 const int check_outputs
;
582 const CGEN_OPINST
*a_operands
= CGEN_INSN_OPERANDS (a
->insn
);
583 const CGEN_OPINST
*b_ops
= CGEN_INSN_OPERANDS (b
->insn
);
586 /* If at least one of the instructions takes no operands, then there is
587 nothing to check. There really are instructions without operands,
589 if (a_operands
== NULL
|| b_ops
== NULL
)
592 /* Scan the operand list of 'a' looking for an output operand. */
594 a_operands
->type
!= CGEN_OPINST_END
;
595 a_index
++, a_operands
++)
597 if (a_operands
->type
== CGEN_OPINST_OUTPUT
)
600 const CGEN_OPINST
*b_operands
= b_ops
;
603 The Condition bit 'C' is a shadow of the CBR register (control
604 register 1) and also a shadow of bit 31 of the program status
605 word (control register 0). For now this is handled here, rather
608 if (OPERAND_IS_COND_BIT (a_operands
, a
->indices
, a_index
))
610 /* Scan operand list of 'b' looking for another reference to the
611 condition bit, which goes in the right direction. */
613 b_operands
->type
!= CGEN_OPINST_END
;
614 b_index
++, b_operands
++)
616 if ((b_operands
->type
619 : CGEN_OPINST_INPUT
))
620 && OPERAND_IS_COND_BIT (b_operands
, b
->indices
, b_index
))
626 /* Scan operand list of 'b' looking for an operand that
627 references the same hardware element, and which goes in the
630 b_operands
->type
!= CGEN_OPINST_END
;
631 b_index
++, b_operands
++)
633 if ((b_operands
->type
636 : CGEN_OPINST_INPUT
))
637 && (b_operands
->hw_type
== a_operands
->hw_type
)
638 && (a
->indices
[a_index
] == b
->indices
[b_index
]))
648 /* Returns true if the insn can (potentially) alter the program counter. */
650 static int writes_to_pc
PARAMS ((m32r_insn
*));
657 /* Once PC operands are working.... */
658 const CGEN_OPINST
*a_operands
== CGEN_INSN_OPERANDS (gas_cgen_cpu_desc
,
661 if (a_operands
== NULL
)
664 while (a_operands
->type
!= CGEN_OPINST_END
)
666 if (a_operands
->operand
!= NULL
667 && CGEN_OPERAND_INDEX (gas_cgen_cpu_desc
,
668 a_operands
->operand
) == M32R_OPERAND_PC
)
674 if (CGEN_INSN_ATTR_VALUE (a
->insn
, CGEN_INSN_UNCOND_CTI
)
675 || CGEN_INSN_ATTR_VALUE (a
->insn
, CGEN_INSN_COND_CTI
))
681 /* Return NULL if the two 16 bit insns can be executed in parallel.
682 Otherwise return a pointer to an error message explaining why not. */
684 static const char *can_make_parallel
PARAMS ((m32r_insn
*, m32r_insn
*));
687 can_make_parallel (a
, b
)
694 /* Make sure the instructions are the right length. */
695 if (CGEN_FIELDS_BITSIZE (&a
->fields
) != 16
696 || CGEN_FIELDS_BITSIZE (&b
->fields
) != 16)
699 if (first_writes_to_seconds_operands (a
, b
, TRUE
))
700 return _("Instructions write to the same destination register.");
702 a_pipe
= CGEN_INSN_ATTR_VALUE (a
->insn
, CGEN_INSN_PIPE
);
703 b_pipe
= CGEN_INSN_ATTR_VALUE (b
->insn
, CGEN_INSN_PIPE
);
705 /* Make sure that the instructions use the correct execution pipelines. */
706 if (a_pipe
== PIPE_NONE
707 || b_pipe
== PIPE_NONE
)
708 return _("Instructions do not use parallel execution pipelines.");
710 /* Leave this test for last, since it is the only test that can
711 go away if the instructions are swapped, and we want to make
712 sure that any other errors are detected before this happens. */
715 return _("Instructions share the same execution pipeline");
720 /* Force the top bit of the second 16-bit insn to be set. */
722 static void make_parallel
PARAMS ((CGEN_INSN_BYTES_PTR
));
725 make_parallel (buffer
)
726 CGEN_INSN_BYTES_PTR buffer
;
731 buffer
[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc
) == CGEN_ENDIAN_BIG
? 0 : 1]
736 /* Same as make_parallel except buffer contains the bytes in target order. */
738 static void target_make_parallel
PARAMS ((char *));
741 target_make_parallel (buffer
)
744 buffer
[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc
) == CGEN_ENDIAN_BIG
? 0 : 1]
748 /* Assemble two instructions with an explicit parallel operation (||) or
749 sequential operation (->). */
751 static void assemble_two_insns
PARAMS ((char *, char *, int));
754 assemble_two_insns (str
, str2
, parallel_p
)
763 char save_str2
= *str2
;
765 /* Separate the two instructions. */
768 /* Make sure the two insns begin on a 32 bit boundary.
769 This is also done for the serial case (foo -> bar), relaxing doesn't
770 affect insns written like this.
771 Note that we must always do this as we can't assume anything about
772 whether we're currently on a 32 bit boundary or not. Relaxing may
776 first
.debug_sym_link
= debug_sym_link
;
777 debug_sym_link
= (sym_linkS
*) 0;
779 /* Parse the first instruction. */
780 if (! (first
.insn
= m32r_cgen_assemble_insn
781 (gas_cgen_cpu_desc
, str
, & first
.fields
, first
.buffer
, & errmsg
)))
788 if (CGEN_FIELDS_BITSIZE (&first
.fields
) != 16)
790 /* xgettext:c-format */
791 as_bad (_("not a 16 bit instruction '%s'"), str
);
794 else if (! enable_special
795 && CGEN_INSN_ATTR_VALUE (first
.insn
, CGEN_INSN_SPECIAL
))
797 /* xgettext:c-format */
798 as_bad (_("unknown instruction '%s'"), str
);
801 else if (! enable_m32rx
802 /* FIXME: Need standard macro to perform this test. */
803 && (CGEN_INSN_ATTR_VALUE (first
.insn
, CGEN_INSN_MACH
)
804 == (1 << MACH_M32RX
)))
806 /* xgettext:c-format */
807 as_bad (_("instruction '%s' is for the M32RX only"), str
);
811 /* Check to see if this is an allowable parallel insn. */
813 && CGEN_INSN_ATTR_VALUE (first
.insn
, CGEN_INSN_PIPE
) == PIPE_NONE
)
815 /* xgettext:c-format */
816 as_bad (_("instruction '%s' cannot be executed in parallel."), str
);
820 /* Restore the original assembly text, just in case it is needed. */
823 /* Save the original string pointer. */
826 /* Advanced past the parsed string. */
829 /* Remember the entire string in case it is needed for error
833 /* Convert the opcode to lower case. */
837 while (ISSPACE (*s2
++))
842 while (ISALNUM (*s2
))
849 /* Preserve any fixups that have been generated and reset the list
851 gas_cgen_save_fixups (0);
853 /* Get the indices of the operands of the instruction. */
854 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
855 doesn't seem right. Perhaps allow passing fields like we do insn. */
856 /* FIXME: ALIAS insns do not have operands, so we use this function
857 to find the equivalent insn and overwrite the value stored in our
858 structure. We still need the original insn, however, since this
859 may have certain attributes that are not present in the unaliased
860 version (eg relaxability). When aliases behave differently this
861 may have to change. */
862 first
.orig_insn
= first
.insn
;
864 CGEN_FIELDS tmp_fields
;
865 first
.insn
= cgen_lookup_get_insn_operands
866 (gas_cgen_cpu_desc
, NULL
, INSN_VALUE (first
.buffer
), NULL
, 16,
867 first
.indices
, &tmp_fields
);
870 if (first
.insn
== NULL
)
871 as_fatal (_("internal error: lookup/get operands failed"));
873 second
.debug_sym_link
= NULL
;
875 /* Parse the second instruction. */
876 if (! (second
.insn
= m32r_cgen_assemble_insn
877 (gas_cgen_cpu_desc
, str
, & second
.fields
, second
.buffer
, & errmsg
)))
884 if (CGEN_FIELDS_BITSIZE (&second
.fields
) != 16)
886 /* xgettext:c-format */
887 as_bad (_("not a 16 bit instruction '%s'"), str
);
890 else if (! enable_special
891 && CGEN_INSN_ATTR_VALUE (second
.insn
, CGEN_INSN_SPECIAL
))
893 /* xgettext:c-format */
894 as_bad (_("unknown instruction '%s'"), str
);
897 else if (! enable_m32rx
898 && CGEN_INSN_ATTR_VALUE (second
.insn
, CGEN_INSN_MACH
) == (1 << MACH_M32RX
))
900 /* xgettext:c-format */
901 as_bad (_("instruction '%s' is for the M32RX only"), str
);
905 /* Check to see if this is an allowable parallel insn. */
907 && CGEN_INSN_ATTR_VALUE (second
.insn
, CGEN_INSN_PIPE
) == PIPE_NONE
)
909 /* xgettext:c-format */
910 as_bad (_("instruction '%s' cannot be executed in parallel."), str
);
914 if (parallel_p
&& ! enable_m32rx
)
916 if (CGEN_INSN_NUM (first
.insn
) != M32R_INSN_NOP
917 && CGEN_INSN_NUM (second
.insn
) != M32R_INSN_NOP
)
919 /* xgettext:c-format */
920 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2
);
925 /* Get the indices of the operands of the instruction. */
926 second
.orig_insn
= second
.insn
;
928 CGEN_FIELDS tmp_fields
;
929 second
.insn
= cgen_lookup_get_insn_operands
930 (gas_cgen_cpu_desc
, NULL
, INSN_VALUE (second
.buffer
), NULL
, 16,
931 second
.indices
, &tmp_fields
);
934 if (second
.insn
== NULL
)
935 as_fatal (_("internal error: lookup/get operands failed"));
937 /* We assume that if the first instruction writes to a register that is
938 read by the second instruction it is because the programmer intended
939 this to happen, (after all they have explicitly requested that these
940 two instructions be executed in parallel). Although if the global
941 variable warn_explicit_parallel_conflicts is true then we do generate
942 a warning message. Similarly we assume that parallel branch and jump
943 instructions are deliberate and should not produce errors. */
945 if (parallel_p
&& warn_explicit_parallel_conflicts
)
947 if (first_writes_to_seconds_operands (&first
, &second
, FALSE
))
948 /* xgettext:c-format */
949 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2
);
951 if (first_writes_to_seconds_operands (&second
, &first
, FALSE
))
952 /* xgettext:c-format */
953 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2
);
957 || (errmsg
= (char *) can_make_parallel (&first
, &second
)) == NULL
)
959 /* Get the fixups for the first instruction. */
960 gas_cgen_swap_fixups (0);
963 expand_debug_syms (first
.debug_sym_link
, 1);
964 gas_cgen_finish_insn (first
.orig_insn
, first
.buffer
,
965 CGEN_FIELDS_BITSIZE (&first
.fields
), 0, NULL
);
967 /* Force the top bit of the second insn to be set. */
969 make_parallel (second
.buffer
);
971 /* Get its fixups. */
972 gas_cgen_restore_fixups (0);
975 expand_debug_syms (second
.debug_sym_link
, 1);
976 gas_cgen_finish_insn (second
.orig_insn
, second
.buffer
,
977 CGEN_FIELDS_BITSIZE (&second
.fields
), 0, NULL
);
979 /* Try swapping the instructions to see if they work that way. */
980 else if (can_make_parallel (&second
, &first
) == NULL
)
982 /* Write out the second instruction first. */
983 expand_debug_syms (second
.debug_sym_link
, 1);
984 gas_cgen_finish_insn (second
.orig_insn
, second
.buffer
,
985 CGEN_FIELDS_BITSIZE (&second
.fields
), 0, NULL
);
987 /* Force the top bit of the first instruction to be set. */
988 make_parallel (first
.buffer
);
990 /* Get the fixups for the first instruction. */
991 gas_cgen_restore_fixups (0);
993 /* Write out the first instruction. */
994 expand_debug_syms (first
.debug_sym_link
, 1);
995 gas_cgen_finish_insn (first
.orig_insn
, first
.buffer
,
996 CGEN_FIELDS_BITSIZE (&first
.fields
), 0, NULL
);
1000 as_bad ("'%s': %s", str2
, errmsg
);
1004 /* Set these so m32r_fill_insn can use them. */
1006 prev_subseg
= now_subseg
;
1017 /* Initialize GAS's cgen interface for a new instruction. */
1018 gas_cgen_init_parse ();
1020 /* Look for a parallel instruction separator. */
1021 if ((str2
= strstr (str
, "||")) != NULL
)
1023 assemble_two_insns (str
, str2
, 1);
1027 /* Also look for a sequential instruction separator. */
1028 if ((str2
= strstr (str
, "->")) != NULL
)
1030 assemble_two_insns (str
, str2
, 0);
1034 insn
.debug_sym_link
= debug_sym_link
;
1035 debug_sym_link
= (sym_linkS
*) 0;
1037 insn
.insn
= m32r_cgen_assemble_insn
1038 (gas_cgen_cpu_desc
, str
, &insn
.fields
, insn
.buffer
, & errmsg
);
1046 if (! enable_special
1047 && CGEN_INSN_ATTR_VALUE (insn
.insn
, CGEN_INSN_SPECIAL
))
1049 /* xgettext:c-format */
1050 as_bad (_("unknown instruction '%s'"), str
);
1053 else if (! enable_m32rx
1054 && CGEN_INSN_ATTR_VALUE (insn
.insn
, CGEN_INSN_MACH
) == (1 << MACH_M32RX
))
1056 /* xgettext:c-format */
1057 as_bad (_("instruction '%s' is for the M32RX only"), str
);
1061 if (CGEN_INSN_BITSIZE (insn
.insn
) == 32)
1063 /* 32 bit insns must live on 32 bit boundaries. */
1064 if (prev_insn
.insn
|| seen_relaxable_p
)
1066 /* ??? If calling fill_insn too many times turns us into a memory
1067 pig, can we call a fn to assemble a nop instead of
1068 !seen_relaxable_p? */
1072 expand_debug_syms (insn
.debug_sym_link
, 2);
1074 /* Doesn't really matter what we pass for RELAX_P here. */
1075 gas_cgen_finish_insn (insn
.insn
, insn
.buffer
,
1076 CGEN_FIELDS_BITSIZE (&insn
.fields
), 1, NULL
);
1080 int on_32bit_boundary_p
;
1083 if (CGEN_INSN_BITSIZE (insn
.insn
) != 16)
1086 insn
.orig_insn
= insn
.insn
;
1088 /* If the previous insn was relaxable, then it may be expanded
1089 to fill the current 16 bit slot. Emit a NOP here to occupy
1090 this slot, so that we can start at optimizing at a 32 bit
1092 if (prev_insn
.insn
&& seen_relaxable_p
&& optimize
)
1097 /* Get the indices of the operands of the instruction.
1098 FIXME: See assemble_parallel for notes on orig_insn. */
1100 CGEN_FIELDS tmp_fields
;
1101 insn
.insn
= cgen_lookup_get_insn_operands
1102 (gas_cgen_cpu_desc
, NULL
, INSN_VALUE (insn
.buffer
), NULL
,
1103 16, insn
.indices
, &tmp_fields
);
1106 if (insn
.insn
== NULL
)
1107 as_fatal (_("internal error: lookup/get operands failed"));
1110 /* Compute whether we're on a 32 bit boundary or not.
1111 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1112 on_32bit_boundary_p
= prev_insn
.insn
== NULL
;
1114 /* Look to see if this instruction can be combined with the
1115 previous instruction to make one, parallel, 32 bit instruction.
1116 If the previous instruction (potentially) changed the flow of
1117 program control, then it cannot be combined with the current
1118 instruction. If the current instruction is relaxable, then it
1119 might be replaced with a longer version, so we cannot combine it.
1120 Also if the output of the previous instruction is used as an
1121 input to the current instruction then it cannot be combined.
1122 Otherwise call can_make_parallel() with both orderings of the
1123 instructions to see if they can be combined. */
1124 if (! on_32bit_boundary_p
1127 && CGEN_INSN_ATTR_VALUE (insn
.orig_insn
, CGEN_INSN_RELAXABLE
) == 0
1128 && ! writes_to_pc (&prev_insn
)
1129 && ! first_writes_to_seconds_operands (&prev_insn
, &insn
, FALSE
))
1131 if (can_make_parallel (&prev_insn
, &insn
) == NULL
)
1132 make_parallel (insn
.buffer
);
1133 else if (can_make_parallel (&insn
, &prev_insn
) == NULL
)
1137 expand_debug_syms (insn
.debug_sym_link
, 1);
1143 /* Ensure each pair of 16 bit insns is in the same frag. */
1146 gas_cgen_finish_insn (insn
.orig_insn
, insn
.buffer
,
1147 CGEN_FIELDS_BITSIZE (&insn
.fields
),
1148 1 /* relax_p */, &fi
);
1149 insn
.addr
= fi
.addr
;
1150 insn
.frag
= fi
.frag
;
1151 insn
.num_fixups
= fi
.num_fixups
;
1152 for (i
= 0; i
< fi
.num_fixups
; ++i
)
1153 insn
.fixups
[i
] = fi
.fixups
[i
];
1160 #define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1162 /* Swap the two insns */
1163 SWAP_BYTES (prev_insn
.addr
[0], insn
.addr
[0]);
1164 SWAP_BYTES (prev_insn
.addr
[1], insn
.addr
[1]);
1166 target_make_parallel (insn
.addr
);
1168 /* Swap any relaxable frags recorded for the two insns. */
1169 /* FIXME: Clarify. relaxation precludes parallel insns */
1170 if (prev_insn
.frag
->fr_opcode
== prev_insn
.addr
)
1171 prev_insn
.frag
->fr_opcode
= insn
.addr
;
1172 else if (insn
.frag
->fr_opcode
== insn
.addr
)
1173 insn
.frag
->fr_opcode
= prev_insn
.addr
;
1175 /* Update the addresses in any fixups.
1176 Note that we don't have to handle the case where each insn is in
1177 a different frag as we ensure they're in the same frag above. */
1178 for (i
= 0; i
< prev_insn
.num_fixups
; ++i
)
1179 prev_insn
.fixups
[i
]->fx_where
+= 2;
1180 for (i
= 0; i
< insn
.num_fixups
; ++i
)
1181 insn
.fixups
[i
]->fx_where
-= 2;
1184 /* Keep track of whether we've seen a pair of 16 bit insns.
1185 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1186 if (on_32bit_boundary_p
)
1189 prev_insn
.insn
= NULL
;
1191 /* If the insn needs the following one to be on a 32 bit boundary
1192 (e.g. subroutine calls), fill this insn's slot. */
1193 if (on_32bit_boundary_p
1194 && CGEN_INSN_ATTR_VALUE (insn
.orig_insn
, CGEN_INSN_FILL_SLOT
) != 0)
1197 /* If this is a relaxable insn (can be replaced with a larger version)
1198 mark the fact so that we can emit an alignment directive for a
1199 following 32 bit insn if we see one. */
1200 if (CGEN_INSN_ATTR_VALUE (insn
.orig_insn
, CGEN_INSN_RELAXABLE
) != 0)
1201 seen_relaxable_p
= 1;
1204 /* Set these so m32r_fill_insn can use them. */
1206 prev_subseg
= now_subseg
;
1209 /* The syntax in the manual says constants begin with '#'.
1210 We just ignore it. */
1213 md_operand (expressionP
)
1214 expressionS
*expressionP
;
1216 if (*input_line_pointer
== '#')
1218 input_line_pointer
++;
1219 expression (expressionP
);
1224 md_section_align (segment
, size
)
1228 int align
= bfd_get_section_alignment (stdoutput
, segment
);
1229 return ((size
+ (1 << align
) - 1) & (-1 << align
));
1233 md_undefined_symbol (name
)
1234 char *name ATTRIBUTE_UNUSED
;
1239 /* .scomm pseudo-op handler.
1241 This is a new pseudo-op to handle putting objects in .scommon.
1242 By doing this the linker won't need to do any work,
1243 and more importantly it removes the implicit -G arg necessary to
1244 correctly link the object file. */
1248 int ignore ATTRIBUTE_UNUSED
;
1250 register char *name
;
1254 register symbolS
*symbolP
;
1258 name
= input_line_pointer
;
1259 c
= get_symbol_end ();
1261 /* Just after name is now '\0'. */
1262 p
= input_line_pointer
;
1265 if (*input_line_pointer
!= ',')
1267 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1268 ignore_rest_of_line ();
1273 input_line_pointer
++;
1274 if ((size
= get_absolute_expression ()) < 0)
1276 /* xgettext:c-format */
1277 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size
);
1278 ignore_rest_of_line ();
1282 /* The third argument to .scomm is the alignment. */
1283 if (*input_line_pointer
!= ',')
1287 ++input_line_pointer
;
1288 align
= get_absolute_expression ();
1291 as_warn (_("ignoring bad alignment"));
1296 /* Convert to a power of 2 alignment. */
1299 for (align2
= 0; (align
& 1) == 0; align
>>= 1, ++align2
)
1303 as_bad (_("Common alignment not a power of 2"));
1304 ignore_rest_of_line ();
1312 symbolP
= symbol_find_or_make (name
);
1315 if (S_IS_DEFINED (symbolP
))
1317 /* xgettext:c-format */
1318 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1319 S_GET_NAME (symbolP
));
1320 ignore_rest_of_line ();
1324 if (S_GET_VALUE (symbolP
) && S_GET_VALUE (symbolP
) != (valueT
) size
)
1326 /* xgettext:c-format */
1327 as_bad (_("Length of .scomm \"%s\" is already %ld. Not changed to %ld."),
1328 S_GET_NAME (symbolP
),
1329 (long) S_GET_VALUE (symbolP
),
1332 ignore_rest_of_line ();
1336 if (symbol_get_obj (symbolP
)->local
)
1338 segT old_sec
= now_seg
;
1339 int old_subsec
= now_subseg
;
1342 record_alignment (sbss_section
, align2
);
1343 subseg_set (sbss_section
, 0);
1346 frag_align (align2
, 0, 0);
1348 if (S_GET_SEGMENT (symbolP
) == sbss_section
)
1349 symbol_get_frag (symbolP
)->fr_symbol
= 0;
1351 symbol_set_frag (symbolP
, frag_now
);
1353 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
, size
,
1356 S_SET_SIZE (symbolP
, size
);
1357 S_SET_SEGMENT (symbolP
, sbss_section
);
1358 S_CLEAR_EXTERNAL (symbolP
);
1359 subseg_set (old_sec
, old_subsec
);
1363 S_SET_VALUE (symbolP
, (valueT
) size
);
1364 S_SET_ALIGN (symbolP
, align2
);
1365 S_SET_EXTERNAL (symbolP
);
1366 S_SET_SEGMENT (symbolP
, &scom_section
);
1369 demand_empty_rest_of_line ();
1372 /* Interface to relax_segment. */
1374 /* FIXME: Build table by hand, get it working, then machine generate. */
1376 const relax_typeS md_relax_table
[] =
1379 1) most positive reach of this state,
1380 2) most negative reach of this state,
1381 3) how many bytes this mode will add to the size of the current frag
1382 4) which index into the table to try if we can't fit into this one. */
1384 /* The first entry must be unused because an `rlx_more' value of zero ends
1388 /* The displacement used by GAS is from the end of the 2 byte insn,
1389 so we subtract 2 from the following. */
1390 /* 16 bit insn, 8 bit disp -> 10 bit range.
1391 This doesn't handle a branch in the right slot at the border:
1392 the "& -4" isn't taken into account. It's not important enough to
1393 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1395 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1396 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1397 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1398 /* Same thing, but with leading nop for alignment. */
1399 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1403 m32r_relax_frag (segment
, fragP
, stretch
)
1408 /* Address of branch insn. */
1409 long address
= fragP
->fr_address
+ fragP
->fr_fix
- 2;
1412 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1413 if (fragP
->fr_subtype
== 2)
1415 if ((address
& 3) != 0)
1417 fragP
->fr_subtype
= 3;
1421 else if (fragP
->fr_subtype
== 3)
1423 if ((address
& 3) == 0)
1425 fragP
->fr_subtype
= 2;
1431 growth
= relax_frag (segment
, fragP
, stretch
);
1433 /* Long jump on odd halfword boundary? */
1434 if (fragP
->fr_subtype
== 2 && (address
& 3) != 0)
1436 fragP
->fr_subtype
= 3;
1444 /* Return an initial guess of the length by which a fragment must grow to
1445 hold a branch to reach its destination.
1446 Also updates fr_type/fr_subtype as necessary.
1448 Called just before doing relaxation.
1449 Any symbol that is now undefined will not become defined.
1450 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1451 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1452 Although it may not be explicit in the frag, pretend fr_var starts
1456 md_estimate_size_before_relax (fragP
, segment
)
1460 /* The only thing we have to handle here are symbols outside of the
1461 current segment. They may be undefined or in a different segment in
1462 which case linker scripts may place them anywhere.
1463 However, we can't finish the fragment here and emit the reloc as insn
1464 alignment requirements may move the insn about. */
1466 if (S_GET_SEGMENT (fragP
->fr_symbol
) != segment
)
1469 int old_fr_fix
= fragP
->fr_fix
;
1472 /* The symbol is undefined in this segment.
1473 Change the relaxation subtype to the max allowable and leave
1474 all further handling to md_convert_frag. */
1475 fragP
->fr_subtype
= 2;
1478 /* Can't use this, but leave in for illustration. */
1479 /* Change 16 bit insn to 32 bit insn. */
1480 fragP
->fr_opcode
[0] |= 0x80;
1482 /* Increase known (fixed) size of fragment. */
1485 /* Create a relocation for it. */
1486 fix_new (fragP
, old_fr_fix
, 4,
1488 fragP
->fr_offset
, 1 /* pcrel */,
1489 /* FIXME: Can't use a real BFD reloc here.
1490 gas_cgen_md_apply_fix3 can't handle it. */
1491 BFD_RELOC_M32R_26_PCREL
);
1493 /* Mark this fragment as finished. */
1495 return fragP
->fr_fix
- old_fr_fix
;
1498 const CGEN_INSN
*insn
;
1501 /* Update the recorded insn.
1502 Fortunately we don't have to look very far.
1503 FIXME: Change this to record in the instruction the next higher
1504 relaxable insn to use. */
1505 for (i
= 0, insn
= fragP
->fr_cgen
.insn
; i
< 4; i
++, insn
++)
1507 if ((strcmp (CGEN_INSN_MNEMONIC (insn
),
1508 CGEN_INSN_MNEMONIC (fragP
->fr_cgen
.insn
))
1510 && CGEN_INSN_ATTR_VALUE (insn
, CGEN_INSN_RELAXED
))
1516 fragP
->fr_cgen
.insn
= insn
;
1522 return md_relax_table
[fragP
->fr_subtype
].rlx_length
;
1525 /* *FRAGP has been relaxed to its final size, and now needs to have
1526 the bytes inside it modified to conform to the new size.
1528 Called after relaxation is finished.
1529 fragP->fr_type == rs_machine_dependent.
1530 fragP->fr_subtype is the subtype of what the address relaxed to. */
1533 md_convert_frag (abfd
, sec
, fragP
)
1534 bfd
*abfd ATTRIBUTE_UNUSED
;
1545 opcode
= fragP
->fr_opcode
;
1547 /* Address opcode resides at in file space. */
1548 opcode_address
= fragP
->fr_address
+ fragP
->fr_fix
- 2;
1550 switch (fragP
->fr_subtype
)
1554 displacement
= &opcode
[1];
1559 displacement
= &opcode
[1];
1562 opcode
[2] = opcode
[0] | 0x80;
1563 md_number_to_chars (opcode
, PAR_NOP_INSN
, 2);
1564 opcode_address
+= 2;
1566 displacement
= &opcode
[3];
1572 if (S_GET_SEGMENT (fragP
->fr_symbol
) != sec
)
1574 /* Symbol must be resolved by linker. */
1575 if (fragP
->fr_offset
& 3)
1576 as_warn (_("Addend to unresolved symbol not on word boundary."));
1577 addend
= fragP
->fr_offset
>> 2;
1581 /* Address we want to reach in file space. */
1582 target_address
= S_GET_VALUE (fragP
->fr_symbol
) + fragP
->fr_offset
;
1583 addend
= (target_address
- (opcode_address
& -4)) >> 2;
1586 /* Create a relocation for symbols that must be resolved by the linker.
1587 Otherwise output the completed insn. */
1589 if (S_GET_SEGMENT (fragP
->fr_symbol
) != sec
)
1591 assert (fragP
->fr_subtype
!= 1);
1592 assert (fragP
->fr_cgen
.insn
!= 0);
1593 gas_cgen_record_fixup (fragP
,
1594 /* Offset of branch insn in frag. */
1595 fragP
->fr_fix
+ extension
- 4,
1596 fragP
->fr_cgen
.insn
,
1598 /* FIXME: quick hack. */
1600 cgen_operand_lookup_by_num (gas_cgen_cpu_desc
,
1601 fragP
->fr_cgen
.opindex
),
1603 cgen_operand_lookup_by_num (gas_cgen_cpu_desc
,
1604 M32R_OPERAND_DISP24
),
1606 fragP
->fr_cgen
.opinfo
,
1607 fragP
->fr_symbol
, fragP
->fr_offset
);
1610 #define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1612 md_number_to_chars (displacement
, (valueT
) addend
,
1613 SIZE_FROM_RELAX_STATE (fragP
->fr_subtype
));
1615 fragP
->fr_fix
+= extension
;
1618 /* Functions concerning relocs. */
1620 /* The location from which a PC relative jump should be calculated,
1621 given a PC relative reloc. */
1624 md_pcrel_from_section (fixP
, sec
)
1628 if (fixP
->fx_addsy
!= (symbolS
*) NULL
1629 && (! S_IS_DEFINED (fixP
->fx_addsy
)
1630 || S_GET_SEGMENT (fixP
->fx_addsy
) != sec
))
1632 /* The symbol is undefined (or is defined but not in this section).
1633 Let the linker figure it out. */
1637 return (fixP
->fx_frag
->fr_address
+ fixP
->fx_where
) & -4L;
1640 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1641 Returns BFD_RELOC_NONE if no reloc type can be found.
1642 *FIXP may be modified if desired. */
1644 bfd_reloc_code_real_type
1645 md_cgen_lookup_reloc (insn
, operand
, fixP
)
1646 const CGEN_INSN
*insn ATTRIBUTE_UNUSED
;
1647 const CGEN_OPERAND
*operand
;
1650 switch (operand
->type
)
1652 case M32R_OPERAND_DISP8
: return BFD_RELOC_M32R_10_PCREL
;
1653 case M32R_OPERAND_DISP16
: return BFD_RELOC_M32R_18_PCREL
;
1654 case M32R_OPERAND_DISP24
: return BFD_RELOC_M32R_26_PCREL
;
1655 case M32R_OPERAND_UIMM24
: return BFD_RELOC_M32R_24
;
1656 case M32R_OPERAND_HI16
:
1657 case M32R_OPERAND_SLO16
:
1658 case M32R_OPERAND_ULO16
:
1659 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1660 if (fixP
->fx_cgen
.opinfo
!= 0)
1661 return fixP
->fx_cgen
.opinfo
;
1664 /* Avoid -Wall warning. */
1667 return BFD_RELOC_NONE
;
1670 /* Record a HI16 reloc for later matching with its LO16 cousin. */
1672 static void m32r_record_hi16
PARAMS ((int, fixS
*, segT
));
1675 m32r_record_hi16 (reloc_type
, fixP
, seg
)
1678 segT seg ATTRIBUTE_UNUSED
;
1680 struct m32r_hi_fixup
*hi_fixup
;
1682 assert (reloc_type
== BFD_RELOC_M32R_HI16_SLO
1683 || reloc_type
== BFD_RELOC_M32R_HI16_ULO
);
1685 hi_fixup
= ((struct m32r_hi_fixup
*)
1686 xmalloc (sizeof (struct m32r_hi_fixup
)));
1687 hi_fixup
->fixp
= fixP
;
1688 hi_fixup
->seg
= now_seg
;
1689 hi_fixup
->next
= m32r_hi_fixup_list
;
1691 m32r_hi_fixup_list
= hi_fixup
;
1694 /* Called while parsing an instruction to create a fixup.
1695 We need to check for HI16 relocs and queue them up for later sorting. */
1698 m32r_cgen_record_fixup_exp (frag
, where
, insn
, length
, operand
, opinfo
, exp
)
1701 const CGEN_INSN
*insn
;
1703 const CGEN_OPERAND
*operand
;
1707 fixS
*fixP
= gas_cgen_record_fixup_exp (frag
, where
, insn
, length
,
1708 operand
, opinfo
, exp
);
1710 switch (operand
->type
)
1712 case M32R_OPERAND_HI16
:
1713 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1714 if (fixP
->fx_cgen
.opinfo
== BFD_RELOC_M32R_HI16_SLO
1715 || fixP
->fx_cgen
.opinfo
== BFD_RELOC_M32R_HI16_ULO
)
1716 m32r_record_hi16 (fixP
->fx_cgen
.opinfo
, fixP
, now_seg
);
1719 /* Avoid -Wall warning */
1726 /* Return BFD reloc type from opinfo field in a fixS.
1727 It's tricky using fx_r_type in m32r_frob_file because the values
1728 are BFD_RELOC_UNUSED + operand number. */
1729 #define FX_OPINFO_R_TYPE(f) ((f)->fx_cgen.opinfo)
1731 /* Sort any unmatched HI16 relocs so that they immediately precede
1732 the corresponding LO16 reloc. This is called before md_apply_fix3 and
1738 struct m32r_hi_fixup
*l
;
1740 for (l
= m32r_hi_fixup_list
; l
!= NULL
; l
= l
->next
)
1742 segment_info_type
*seginfo
;
1745 assert (FX_OPINFO_R_TYPE (l
->fixp
) == BFD_RELOC_M32R_HI16_SLO
1746 || FX_OPINFO_R_TYPE (l
->fixp
) == BFD_RELOC_M32R_HI16_ULO
);
1748 /* Check quickly whether the next fixup happens to be a matching low. */
1749 if (l
->fixp
->fx_next
!= NULL
1750 && FX_OPINFO_R_TYPE (l
->fixp
->fx_next
) == BFD_RELOC_M32R_LO16
1751 && l
->fixp
->fx_addsy
== l
->fixp
->fx_next
->fx_addsy
1752 && l
->fixp
->fx_offset
== l
->fixp
->fx_next
->fx_offset
)
1755 /* Look through the fixups for this segment for a matching `low'.
1756 When we find one, move the high/shigh just in front of it. We do
1757 this in two passes. In the first pass, we try to find a
1758 unique `low'. In the second pass, we permit multiple high's
1759 relocs for a single `low'. */
1760 seginfo
= seg_info (l
->seg
);
1761 for (pass
= 0; pass
< 2; pass
++)
1767 for (f
= seginfo
->fix_root
; f
!= NULL
; f
= f
->fx_next
)
1769 /* Check whether this is a `low' fixup which matches l->fixp. */
1770 if (FX_OPINFO_R_TYPE (f
) == BFD_RELOC_M32R_LO16
1771 && f
->fx_addsy
== l
->fixp
->fx_addsy
1772 && f
->fx_offset
== l
->fixp
->fx_offset
1775 || (FX_OPINFO_R_TYPE (prev
) != BFD_RELOC_M32R_HI16_SLO
1776 && FX_OPINFO_R_TYPE (prev
) != BFD_RELOC_M32R_HI16_ULO
)
1777 || prev
->fx_addsy
!= f
->fx_addsy
1778 || prev
->fx_offset
!= f
->fx_offset
))
1782 /* Move l->fixp before f. */
1783 for (pf
= &seginfo
->fix_root
;
1785 pf
= & (*pf
)->fx_next
)
1786 assert (*pf
!= NULL
);
1788 *pf
= l
->fixp
->fx_next
;
1790 l
->fixp
->fx_next
= f
;
1792 seginfo
->fix_root
= l
->fixp
;
1794 prev
->fx_next
= l
->fixp
;
1806 && warn_unmatched_high
)
1807 as_warn_where (l
->fixp
->fx_file
, l
->fixp
->fx_line
,
1808 _("Unmatched high/shigh reloc"));
1813 /* See whether we need to force a relocation into the output file.
1814 This is used to force out switch and PC relative relocations when
1818 m32r_force_relocation (fix
)
1821 if (generic_force_reloc (fix
))
1827 return fix
->fx_pcrel
;
1830 /* Write a value out to the object file, using the appropriate endianness. */
1833 md_number_to_chars (buf
, val
, n
)
1838 if (target_big_endian
)
1839 number_to_chars_bigendian (buf
, val
, n
);
1841 number_to_chars_littleendian (buf
, val
, n
);
1844 /* Turn a string in input_line_pointer into a floating point constant
1845 of type TYPE, and store the appropriate bytes in *LITP. The number
1846 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1847 returned, or NULL on OK. */
1849 /* Equal to MAX_PRECISION in atof-ieee.c. */
1850 #define MAX_LITTLENUMS 6
1853 md_atof (type
, litP
, sizeP
)
1860 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
1879 /* FIXME: Some targets allow other format chars for bigger sizes
1884 return _("Bad call to md_atof()");
1887 t
= atof_ieee (input_line_pointer
, type
, words
);
1889 input_line_pointer
= t
;
1890 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
1892 if (target_big_endian
)
1894 for (i
= 0; i
< prec
; i
++)
1896 md_number_to_chars (litP
, (valueT
) words
[i
],
1897 sizeof (LITTLENUM_TYPE
));
1898 litP
+= sizeof (LITTLENUM_TYPE
);
1903 for (i
= prec
- 1; i
>= 0; i
--)
1905 md_number_to_chars (litP
, (valueT
) words
[i
],
1906 sizeof (LITTLENUM_TYPE
));
1907 litP
+= sizeof (LITTLENUM_TYPE
);
1915 m32r_elf_section_change_hook ()
1917 /* If we have reached the end of a section and we have just emitted a
1918 16 bit insn, then emit a nop to make sure that the section ends on
1919 a 32 bit boundary. */
1921 if (prev_insn
.insn
|| seen_relaxable_p
)
1922 (void) m32r_fill_insn (0);
1925 /* Return true if can adjust the reloc to be relative to its section
1926 (such as .data) instead of relative to some symbol. */
1929 m32r_fix_adjustable (fixP
)
1932 bfd_reloc_code_real_type reloc_type
;
1934 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
1936 const CGEN_INSN
*insn
= NULL
;
1937 int opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
1938 const CGEN_OPERAND
*operand
=
1939 cgen_operand_lookup_by_num(gas_cgen_cpu_desc
, opindex
);
1940 reloc_type
= md_cgen_lookup_reloc (insn
, operand
, fixP
);
1943 reloc_type
= fixP
->fx_r_type
;
1945 /* We need the symbol name for the VTABLE entries. */
1946 if (reloc_type
== BFD_RELOC_VTABLE_INHERIT
1947 || reloc_type
== BFD_RELOC_VTABLE_ENTRY
)