tc-m32r.c revision 1.5.2.1 1 /* tc-m32r.c -- Assembler for the Renesas M32R.
2 Copyright (C) 1996-2018 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
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 3, or (at your option)
9 any later version.
10
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.
15
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, 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
20
21 #include "as.h"
22 #include "safe-ctype.h"
23 #include "subsegs.h"
24 #include "symcat.h"
25 #include "opcodes/m32r-desc.h"
26 #include "opcodes/m32r-opc.h"
27 #include "cgen.h"
28 #include "elf/m32r.h"
29
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
33 {
34 struct sym_link *next;
35 symbolS *symbol;
36 } sym_linkS;
37
38 static sym_linkS *debug_sym_link = (sym_linkS *) 0;
39
40 /* Structure to hold all of the different components describing
41 an individual instruction. */
42 typedef struct
43 {
44 const CGEN_INSN *insn;
45 const CGEN_INSN *orig_insn;
46 CGEN_FIELDS fields;
47 #if CGEN_INT_INSN_P
48 CGEN_INSN_INT buffer[1];
49 #define INSN_VALUE(buf) (*(buf))
50 #else
51 unsigned char buffer[CGEN_MAX_INSN_SIZE];
52 #define INSN_VALUE(buf) (buf)
53 #endif
54 char *addr;
55 fragS *frag;
56 int num_fixups;
57 fixS *fixups[GAS_CGEN_MAX_FIXUPS];
58 int indices[MAX_OPERAND_INSTANCES];
59 sym_linkS *debug_sym_link;
60 }
61 m32r_insn;
62
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;
66
67 /* Non-zero if we've seen a relaxable insn since the last 32 bit
68 alignment request. */
69 static int seen_relaxable_p = 0;
70
71 /* Non-zero if we are generating PIC code. */
72 int pic_code;
73
74 /* Non-zero if -relax specified, in which case sufficient relocs are output
75 for the linker to do relaxing.
76 We do simple forms of relaxing internally, but they are always done.
77 This flag does not apply to them. */
78 static int m32r_relax;
79
80 /* Non-zero if warn when a high/shigh reloc has no matching low reloc.
81 Each high/shigh reloc must be paired with it's low cousin in order to
82 properly calculate the addend in a relocatable link (since there is a
83 potential carry from the low to the high/shigh).
84 This option is off by default though for user-written assembler code it
85 might make sense to make the default be on (i.e. have gcc pass a flag
86 to turn it off). This warning must not be on for GCC created code as
87 optimization may delete the low but not the high/shigh (at least we
88 shouldn't assume or require it to). */
89 static int warn_unmatched_high = 0;
90
91 /* 1 if -m32rx has been specified, in which case support for
92 the extended M32RX instruction set should be enabled.
93 2 if -m32r2 has been specified, in which case support for
94 the extended M32R2 instruction set should be enabled. */
95 static int enable_m32rx = 0; /* Default to M32R. */
96
97 /* Non-zero if -m32rx -hidden has been specified, in which case support for
98 the special M32RX instruction set should be enabled. */
99 static int enable_special = 0;
100
101 /* Non-zero if -bitinst has been specified, in which case support
102 for extended M32R bit-field instruction set should be enabled. */
103 static int enable_special_m32r = 1;
104
105 /* Non-zero if -float has been specified, in which case support for
106 extended M32R floating point instruction set should be enabled. */
107 static int enable_special_float = 0;
108
109 /* Non-zero if the programmer should be warned when an explicit parallel
110 instruction might have constraint violations. */
111 static int warn_explicit_parallel_conflicts = 1;
112
113 /* Non-zero if the programmer should not receive any messages about
114 parallel instruction with potential or real constraint violations.
115 The ability to suppress these messages is intended only for hardware
116 vendors testing the chip. It supersedes
117 warn_explicit_parallel_conflicts. */
118 static int ignore_parallel_conflicts = 0;
119
120 /* Non-zero if insns can be made parallel. */
121 static int use_parallel = 0;
122
123 /* Non-zero if optimizations should be performed. */
124 static int optimize;
125
126 /* m32r er_flags. */
127 static int m32r_flags = 0;
128
129 /* Stuff for .scomm symbols. */
130 static segT sbss_section;
131 static asection scom_section;
132 static asymbol scom_symbol;
133
134 const char comment_chars[] = ";";
135 const char line_comment_chars[] = "#";
136 const char line_separator_chars[] = "!";
137 const char EXP_CHARS[] = "eE";
138 const char FLT_CHARS[] = "dD";
139
140 /* Relocations against symbols are done in two
141 parts, with a HI relocation and a LO relocation. Each relocation
142 has only 16 bits of space to store an addend. This means that in
143 order for the linker to handle carries correctly, it must be able
144 to locate both the HI and the LO relocation. This means that the
145 relocations must appear in order in the relocation table.
146
147 In order to implement this, we keep track of each unmatched HI
148 relocation. We then sort them so that they immediately precede the
149 corresponding LO relocation. */
150
151 struct m32r_hi_fixup
152 {
153 /* Next HI fixup. */
154 struct m32r_hi_fixup *next;
155
156 /* This fixup. */
157 fixS *fixp;
158
159 /* The section this fixup is in. */
160 segT seg;
161 };
162
163 /* The list of unmatched HI relocs. */
164
165 static struct m32r_hi_fixup *m32r_hi_fixup_list;
166
167 static const struct
169 {
170 enum bfd_architecture bfd_mach;
171 int mach_flags;
172 } mach_table[] =
173 {
174 { bfd_mach_m32r, (1<<MACH_M32R) },
175 { bfd_mach_m32rx, (1<<MACH_M32RX) },
176 { bfd_mach_m32r2, (1<<MACH_M32R2) }
177 };
178
179 static void
180 allow_m32rx (int on)
181 {
182 enable_m32rx = on;
183
184 if (stdoutput != NULL)
185 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach_table[on].bfd_mach);
186
187 if (gas_cgen_cpu_desc != NULL)
188 gas_cgen_cpu_desc->machs = mach_table[on].mach_flags;
189 }
190
191 #define M32R_SHORTOPTS "O::K:"
193
194 const char *md_shortopts = M32R_SHORTOPTS;
195
196 enum md_option_enums
197 {
198 OPTION_M32R = OPTION_MD_BASE,
199 OPTION_M32RX,
200 OPTION_M32R2,
201 OPTION_BIG,
202 OPTION_LITTLE,
203 OPTION_PARALLEL,
204 OPTION_NO_PARALLEL,
205 OPTION_WARN_PARALLEL,
206 OPTION_NO_WARN_PARALLEL,
207 OPTION_IGNORE_PARALLEL,
208 OPTION_NO_IGNORE_PARALLEL,
209 OPTION_SPECIAL,
210 OPTION_SPECIAL_M32R,
211 OPTION_NO_SPECIAL_M32R,
212 OPTION_SPECIAL_FLOAT,
213 OPTION_WARN_UNMATCHED,
214 OPTION_NO_WARN_UNMATCHED
215 };
216
217 struct option md_longopts[] =
218 {
219 {"m32r", no_argument, NULL, OPTION_M32R},
220 {"m32rx", no_argument, NULL, OPTION_M32RX},
221 {"m32r2", no_argument, NULL, OPTION_M32R2},
222 {"big", no_argument, NULL, OPTION_BIG},
223 {"little", no_argument, NULL, OPTION_LITTLE},
224 {"EB", no_argument, NULL, OPTION_BIG},
225 {"EL", no_argument, NULL, OPTION_LITTLE},
226 {"parallel", no_argument, NULL, OPTION_PARALLEL},
227 {"no-parallel", no_argument, NULL, OPTION_NO_PARALLEL},
228 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN_PARALLEL},
229 {"Wp", no_argument, NULL, OPTION_WARN_PARALLEL},
230 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
231 {"Wnp", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
232 {"ignore-parallel-conflicts", no_argument, NULL, OPTION_IGNORE_PARALLEL},
233 {"Ip", no_argument, NULL, OPTION_IGNORE_PARALLEL},
234 {"no-ignore-parallel-conflicts", no_argument, NULL, OPTION_NO_IGNORE_PARALLEL},
235 {"nIp", no_argument, NULL, OPTION_NO_IGNORE_PARALLEL},
236 {"hidden", no_argument, NULL, OPTION_SPECIAL},
237 {"bitinst", no_argument, NULL, OPTION_SPECIAL_M32R},
238 {"no-bitinst", no_argument, NULL, OPTION_NO_SPECIAL_M32R},
239 {"float", no_argument, NULL, OPTION_SPECIAL_FLOAT},
240 /* Sigh. I guess all warnings must now have both variants. */
241 {"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
242 {"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
243 {"no-warn-unmatched-high", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
244 {"Wnuh", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
245 {NULL, no_argument, NULL, 0}
246 };
247
248 size_t md_longopts_size = sizeof (md_longopts);
249
250 static void
251 little (int on)
252 {
253 target_big_endian = ! on;
254 }
255
256 /* Use parallel execution. */
257
258 static int
259 parallel (void)
260 {
261 if (! enable_m32rx)
262 return 0;
263
264 if (use_parallel == 1)
265 return 1;
266
267 return 0;
268 }
269
270 int
271 md_parse_option (int c, const char *arg ATTRIBUTE_UNUSED)
272 {
273 switch (c)
274 {
275 case 'O':
276 optimize = 1;
277 use_parallel = 1;
278 break;
279
280 case OPTION_M32R:
281 allow_m32rx (0);
282 break;
283
284 case OPTION_M32RX:
285 allow_m32rx (1);
286 break;
287
288 case OPTION_M32R2:
289 allow_m32rx (2);
290 enable_special = 1;
291 enable_special_m32r = 1;
292 break;
293
294 case OPTION_BIG:
295 target_big_endian = 1;
296 break;
297
298 case OPTION_LITTLE:
299 target_big_endian = 0;
300 break;
301
302 case OPTION_PARALLEL:
303 use_parallel = 1;
304 break;
305
306 case OPTION_NO_PARALLEL:
307 use_parallel = 0;
308 break;
309
310 case OPTION_WARN_PARALLEL:
311 warn_explicit_parallel_conflicts = 1;
312 break;
313
314 case OPTION_NO_WARN_PARALLEL:
315 warn_explicit_parallel_conflicts = 0;
316 break;
317
318 case OPTION_IGNORE_PARALLEL:
319 ignore_parallel_conflicts = 1;
320 break;
321
322 case OPTION_NO_IGNORE_PARALLEL:
323 ignore_parallel_conflicts = 0;
324 break;
325
326 case OPTION_SPECIAL:
327 if (enable_m32rx)
328 enable_special = 1;
329 else
330 {
331 /* Pretend that we do not recognise this option. */
332 as_bad (_("Unrecognised option: -hidden"));
333 return 0;
334 }
335 break;
336
337 case OPTION_SPECIAL_M32R:
338 enable_special_m32r = 1;
339 break;
340
341 case OPTION_NO_SPECIAL_M32R:
342 enable_special_m32r = 0;
343 break;
344
345 case OPTION_SPECIAL_FLOAT:
346 enable_special_float = 1;
347 break;
348
349 case OPTION_WARN_UNMATCHED:
350 warn_unmatched_high = 1;
351 break;
352
353 case OPTION_NO_WARN_UNMATCHED:
354 warn_unmatched_high = 0;
355 break;
356
357 case 'K':
358 if (strcmp (arg, "PIC") != 0)
359 as_warn (_("Unrecognized option following -K"));
360 else
361 pic_code = 1;
362 break;
363
364 default:
365 return 0;
366 }
367
368 return 1;
369 }
370
371 void
372 md_show_usage (FILE *stream)
373 {
374 fprintf (stream, _(" M32R specific command line options:\n"));
375
376 fprintf (stream, _("\
377 -m32r disable support for the m32rx instruction set\n"));
378 fprintf (stream, _("\
379 -m32rx support the extended m32rx instruction set\n"));
380 fprintf (stream, _("\
381 -m32r2 support the extended m32r2 instruction set\n"));
382 fprintf (stream, _("\
383 -EL,-little produce little endian code and data\n"));
384 fprintf (stream, _("\
385 -EB,-big produce big endian code and data\n"));
386 fprintf (stream, _("\
387 -parallel try to combine instructions in parallel\n"));
388 fprintf (stream, _("\
389 -no-parallel disable -parallel\n"));
390 fprintf (stream, _("\
391 -no-bitinst disallow the M32R2's extended bit-field instructions\n"));
392 fprintf (stream, _("\
393 -O try to optimize code. Implies -parallel\n"));
394
395 fprintf (stream, _("\
396 -warn-explicit-parallel-conflicts warn when parallel instructions\n"));
397 fprintf (stream, _("\
398 might violate constraints\n"));
399 fprintf (stream, _("\
400 -no-warn-explicit-parallel-conflicts do not warn when parallel\n"));
401 fprintf (stream, _("\
402 instructions might violate constraints\n"));
403 fprintf (stream, _("\
404 -Wp synonym for -warn-explicit-parallel-conflicts\n"));
405 fprintf (stream, _("\
406 -Wnp synonym for -no-warn-explicit-parallel-conflicts\n"));
407 fprintf (stream, _("\
408 -ignore-parallel-conflicts do not check parallel instructions\n"));
409 fprintf (stream, _("\
410 for constraint violations\n"));
411 fprintf (stream, _("\
412 -no-ignore-parallel-conflicts check parallel instructions for\n"));
413 fprintf (stream, _("\
414 constraint violations\n"));
415 fprintf (stream, _("\
416 -Ip synonym for -ignore-parallel-conflicts\n"));
417 fprintf (stream, _("\
418 -nIp synonym for -no-ignore-parallel-conflicts\n"));
419
420 fprintf (stream, _("\
421 -warn-unmatched-high warn when an (s)high reloc has no matching low reloc\n"));
422 fprintf (stream, _("\
423 -no-warn-unmatched-high do not warn about missing low relocs\n"));
424 fprintf (stream, _("\
425 -Wuh synonym for -warn-unmatched-high\n"));
426 fprintf (stream, _("\
427 -Wnuh synonym for -no-warn-unmatched-high\n"));
428
429 fprintf (stream, _("\
430 -KPIC generate PIC\n"));
431 }
432
433 /* Set by md_assemble for use by m32r_fill_insn. */
434 static subsegT prev_subseg;
435 static segT prev_seg;
436
437 #define GOT_NAME "_GLOBAL_OFFSET_TABLE_"
438 symbolS * GOT_symbol;
439
440 static inline int
441 m32r_PIC_related_p (symbolS *sym)
442 {
443 expressionS *exp;
444
445 if (! sym)
446 return 0;
447
448 if (sym == GOT_symbol)
449 return 1;
450
451 exp = symbol_get_value_expression (sym);
452
453 return (exp->X_op == O_PIC_reloc
454 || exp->X_md == BFD_RELOC_M32R_26_PLTREL
455 || m32r_PIC_related_p (exp->X_add_symbol)
456 || m32r_PIC_related_p (exp->X_op_symbol));
457 }
458
459 static inline int
460 m32r_check_fixup (expressionS *main_exp, bfd_reloc_code_real_type *r_type_p)
461 {
462 expressionS *exp = main_exp;
463
464 if (exp->X_op == O_add && m32r_PIC_related_p (exp->X_op_symbol))
465 return 1;
466
467 if (exp->X_op == O_symbol && exp->X_add_symbol)
468 {
469 if (exp->X_add_symbol == GOT_symbol)
470 {
471 *r_type_p = BFD_RELOC_M32R_GOTPC24;
472 return 0;
473 }
474 }
475 else if (exp->X_op == O_add)
476 {
477 exp = symbol_get_value_expression (exp->X_add_symbol);
478 if (! exp)
479 return 0;
480 }
481
482 if (exp->X_op == O_PIC_reloc)
483 {
484 *r_type_p = exp->X_md;
485 if (exp == main_exp)
486 exp->X_op = O_symbol;
487 else
488 {
489 main_exp->X_add_symbol = exp->X_add_symbol;
490 main_exp->X_add_number += exp->X_add_number;
491 }
492 }
493 else
494 return (m32r_PIC_related_p (exp->X_add_symbol)
495 || m32r_PIC_related_p (exp->X_op_symbol));
496
497 return 0;
498 }
499
500 /* FIXME: Should be machine generated. */
501 #define NOP_INSN 0x7000
502 #define PAR_NOP_INSN 0xf000 /* Can only be used in 2nd slot. */
503
504 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
505 of an rs_align_code fragment. */
506
507 void
508 m32r_handle_align (fragS *fragp)
509 {
510 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
511 static const unsigned char multi_nop_pattern[] = { 0x70, 0x00, 0xf0, 0x00 };
512
513 int bytes, fix;
514 char *p;
515
516 if (fragp->fr_type != rs_align_code)
517 return;
518
519 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
520 p = fragp->fr_literal + fragp->fr_fix;
521 fix = 0;
522
523 if (bytes & 1)
524 {
525 fix = 1;
526 *p++ = 0;
527 bytes--;
528 }
529
530 if (bytes & 2)
531 {
532 memcpy (p, nop_pattern, 2);
533 p += 2;
534 bytes -= 2;
535 fix += 2;
536 }
537
538 memcpy (p, multi_nop_pattern, 4);
539
540 fragp->fr_fix += fix;
541 fragp->fr_var = 4;
542 }
543
544 /* If the last instruction was the first of 2 16 bit insns,
545 output a nop to move the PC to a 32 bit boundary.
546
547 This is done via an alignment specification since branch relaxing
548 may make it unnecessary.
549
550 Internally, we need to output one of these each time a 32 bit insn is
551 seen after an insn that is relaxable. */
552
553 static void
554 fill_insn (int ignore ATTRIBUTE_UNUSED)
555 {
556 frag_align_code (2, 0);
557 prev_insn.insn = NULL;
558 seen_relaxable_p = 0;
559 }
560
561 /* Record the symbol so that when we output the insn, we can create
562 a symbol that is at the start of the instruction. This is used
563 to emit the label for the start of a breakpoint without causing
564 the assembler to emit a NOP if the previous instruction was a
565 16 bit instruction. */
566
567 static void
568 debug_sym (int ignore ATTRIBUTE_UNUSED)
569 {
570 char *name;
571 char delim;
572 symbolS *symbolP;
573 sym_linkS *lnk;
574
575 delim = get_symbol_name (&name);
576
577 if ((symbolP = symbol_find (name)) == NULL
578 && (symbolP = md_undefined_symbol (name)) == NULL)
579 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
580
581 symbol_table_insert (symbolP);
582 if (S_IS_DEFINED (symbolP) && (S_GET_SEGMENT (symbolP) != reg_section
583 || S_IS_EXTERNAL (symbolP)
584 || S_IS_WEAK (symbolP)))
585 /* xgettext:c-format */
586 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
587
588 else
589 {
590 lnk = XNEW (sym_linkS);
591 lnk->symbol = symbolP;
592 lnk->next = debug_sym_link;
593 debug_sym_link = lnk;
594 symbol_get_obj (symbolP)->local = 1;
595 }
596
597 (void) restore_line_pointer (delim);
598 demand_empty_rest_of_line ();
599 }
600
601 /* Second pass to expanding the debug symbols, go through linked
602 list of symbols and reassign the address. */
603
604 static void
605 expand_debug_syms (sym_linkS *syms, int align)
606 {
607 char *save_input_line = input_line_pointer;
608 sym_linkS *next_syms;
609
610 if (!syms)
611 return;
612
613 (void) frag_align_code (align, 0);
614 for (; syms != (sym_linkS *) 0; syms = next_syms)
615 {
616 symbolS *symbolP = syms->symbol;
617 next_syms = syms->next;
618 input_line_pointer = (char *) ".\n";
619 pseudo_set (symbolP);
620 free ((char *) syms);
621 }
622
623 input_line_pointer = save_input_line;
624 }
625
626 void
627 m32r_flush_pending_output (void)
628 {
629 if (debug_sym_link)
630 {
631 expand_debug_syms (debug_sym_link, 1);
632 debug_sym_link = (sym_linkS *) 0;
633 }
634 }
635
636 /* Cover function to fill_insn called after a label and at end of assembly.
637 The result is always 1: we're called in a conditional to see if the
638 current line is a label. */
639
640 int
641 m32r_fill_insn (int done)
642 {
643 if (prev_seg != NULL)
644 {
645 segT seg = now_seg;
646 subsegT subseg = now_subseg;
647
648 subseg_set (prev_seg, prev_subseg);
649
650 fill_insn (0);
651
652 subseg_set (seg, subseg);
653 }
654
655 if (done && debug_sym_link)
656 {
657 expand_debug_syms (debug_sym_link, 1);
658 debug_sym_link = (sym_linkS *) 0;
659 }
660
661 return 1;
662 }
663
664 /* The default target format to use. */
666
667 const char *
668 m32r_target_format (void)
669 {
670 #ifdef TE_LINUX
671 if (target_big_endian)
672 return "elf32-m32r-linux";
673 else
674 return "elf32-m32rle-linux";
675 #else
676 if (target_big_endian)
677 return "elf32-m32r";
678 else
679 return "elf32-m32rle";
680 #endif
681 }
682
683 void
684 md_begin (void)
685 {
686 flagword applicable;
687 segT seg;
688 subsegT subseg;
689
690 /* Initialize the `cgen' interface. */
691
692 /* Set the machine number and endian. */
693 gas_cgen_cpu_desc = m32r_cgen_cpu_open (CGEN_CPU_OPEN_MACHS, 0,
694 CGEN_CPU_OPEN_ENDIAN,
695 (target_big_endian ?
696 CGEN_ENDIAN_BIG : CGEN_ENDIAN_LITTLE),
697 CGEN_CPU_OPEN_END);
698 m32r_cgen_init_asm (gas_cgen_cpu_desc);
699
700 /* The operand instance table is used during optimization to determine
701 which insns can be executed in parallel. It is also used to give
702 warnings regarding operand interference in parallel insns. */
703 m32r_cgen_init_opinst_table (gas_cgen_cpu_desc);
704
705 /* This is a callback from cgen to gas to parse operands. */
706 cgen_set_parse_operand_fn (gas_cgen_cpu_desc, gas_cgen_parse_operand);
707
708 /* Save the current subseg so we can restore it [it's the default one and
709 we don't want the initial section to be .sbss]. */
710 seg = now_seg;
711 subseg = now_subseg;
712
713 /* The sbss section is for local .scomm symbols. */
714 sbss_section = subseg_new (".sbss", 0);
715 seg_info (sbss_section)->bss = 1;
716
717 /* This is copied from perform_an_assembly_pass. */
718 applicable = bfd_applicable_section_flags (stdoutput);
719 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
720
721 subseg_set (seg, subseg);
722
723 /* We must construct a fake section similar to bfd_com_section
724 but with the name .scommon. */
725 scom_section = *bfd_com_section_ptr;
726 scom_section.name = ".scommon";
727 scom_section.output_section = & scom_section;
728 scom_section.symbol = & scom_symbol;
729 scom_section.symbol_ptr_ptr = & scom_section.symbol;
730 scom_symbol = * bfd_com_section_ptr->symbol;
731 scom_symbol.name = ".scommon";
732 scom_symbol.section = & scom_section;
733
734 allow_m32rx (enable_m32rx);
735
736 gas_cgen_initialize_saved_fixups_array ();
737 }
738
739 #define OPERAND_IS_COND_BIT(operand, indices, index) \
740 ((operand)->hw_type == HW_H_COND \
741 || ((operand)->hw_type == HW_H_PSW) \
742 || ((operand)->hw_type == HW_H_CR \
743 && (indices [index] == 0 || indices [index] == 1)))
744
745 /* Returns true if an output of instruction 'a' is referenced by an operand
746 of instruction 'b'. If 'check_outputs' is true then b's outputs are
747 checked, otherwise its inputs are examined. */
748
749 static int
750 first_writes_to_seconds_operands (m32r_insn *a,
751 m32r_insn *b,
752 const int check_outputs)
753 {
754 const CGEN_OPINST *a_operands = CGEN_INSN_OPERANDS (a->insn);
755 const CGEN_OPINST *b_ops = CGEN_INSN_OPERANDS (b->insn);
756 int a_index;
757
758 if (ignore_parallel_conflicts)
759 return 0;
760
761 /* If at least one of the instructions takes no operands, then there is
762 nothing to check. There really are instructions without operands,
763 eg 'nop'. */
764 if (a_operands == NULL || b_ops == NULL)
765 return 0;
766
767 /* Scan the operand list of 'a' looking for an output operand. */
768 for (a_index = 0;
769 a_operands->type != CGEN_OPINST_END;
770 a_index ++, a_operands ++)
771 {
772 if (a_operands->type == CGEN_OPINST_OUTPUT)
773 {
774 int b_index;
775 const CGEN_OPINST *b_operands = b_ops;
776
777 /* Special Case:
778 The Condition bit 'C' is a shadow of the CBR register (control
779 register 1) and also a shadow of bit 31 of the program status
780 word (control register 0). For now this is handled here, rather
781 than by cgen.... */
782
783 if (OPERAND_IS_COND_BIT (a_operands, a->indices, a_index))
784 {
785 /* Scan operand list of 'b' looking for another reference to the
786 condition bit, which goes in the right direction. */
787 for (b_index = 0;
788 b_operands->type != CGEN_OPINST_END;
789 b_index++, b_operands++)
790 {
791 if ((b_operands->type
792 == (check_outputs
793 ? CGEN_OPINST_OUTPUT
794 : CGEN_OPINST_INPUT))
795 && OPERAND_IS_COND_BIT (b_operands, b->indices, b_index))
796 return 1;
797 }
798 }
799 else
800 {
801 /* Scan operand list of 'b' looking for an operand that
802 references the same hardware element, and which goes in the
803 right direction. */
804 for (b_index = 0;
805 b_operands->type != CGEN_OPINST_END;
806 b_index++, b_operands++)
807 {
808 if ((b_operands->type
809 == (check_outputs
810 ? CGEN_OPINST_OUTPUT
811 : CGEN_OPINST_INPUT))
812 && (b_operands->hw_type == a_operands->hw_type)
813 && (a->indices[a_index] == b->indices[b_index]))
814 return 1;
815 }
816 }
817 }
818 }
819
820 return 0;
821 }
822
823 /* Returns true if the insn can (potentially) alter the program counter. */
824
825 static int
826 writes_to_pc (m32r_insn *a)
827 {
828 if (CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_UNCOND_CTI)
829 || CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_COND_CTI))
830 return 1;
831 return 0;
832 }
833
834 /* Return NULL if the two 16 bit insns can be executed in parallel.
835 Otherwise return a pointer to an error message explaining why not. */
836
837 static const char *
838 can_make_parallel (m32r_insn *a, m32r_insn *b)
839 {
840 PIPE_ATTR a_pipe;
841 PIPE_ATTR b_pipe;
842
843 /* Make sure the instructions are the right length. */
844 if (CGEN_FIELDS_BITSIZE (&a->fields) != 16
845 || CGEN_FIELDS_BITSIZE (&b->fields) != 16)
846 abort ();
847
848 if (first_writes_to_seconds_operands (a, b, TRUE))
849 return _("instructions write to the same destination register.");
850
851 a_pipe = CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_PIPE);
852 b_pipe = CGEN_INSN_ATTR_VALUE (b->insn, CGEN_INSN_PIPE);
853
854 /* Make sure that the instructions use the correct execution pipelines. */
855 if (a_pipe == PIPE_NONE
856 || b_pipe == PIPE_NONE)
857 return _("Instructions do not use parallel execution pipelines.");
858
859 /* Leave this test for last, since it is the only test that can
860 go away if the instructions are swapped, and we want to make
861 sure that any other errors are detected before this happens. */
862 if (a_pipe == PIPE_S
863 || b_pipe == PIPE_O
864 || (b_pipe == PIPE_O_OS && (enable_m32rx != 2)))
865 return _("Instructions share the same execution pipeline");
866
867 return NULL;
868 }
869
870 /* Force the top bit of the second 16-bit insn to be set. */
871
872 static void
873 make_parallel (CGEN_INSN_BYTES_PTR buffer)
874 {
875 #if CGEN_INT_INSN_P
876 *buffer |= 0x8000;
877 #else
878 buffer[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
879 |= 0x80;
880 #endif
881 }
882
883 /* Same as make_parallel except buffer contains the bytes in target order. */
884
885 static void
886 target_make_parallel (char *buffer)
887 {
888 buffer[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
889 |= 0x80;
890 }
891
892 /* Assemble two instructions with an explicit parallel operation (||) or
893 sequential operation (->). */
894
895 static void
896 assemble_two_insns (char *str1, char *str2, int parallel_p)
897 {
898 char *str3;
899 m32r_insn first;
900 m32r_insn second;
901 char *errmsg;
902 char save_str2 = *str2;
903
904 /* Separate the two instructions. */
905 *str2 = 0;
906
907 /* Make sure the two insns begin on a 32 bit boundary.
908 This is also done for the serial case (foo -> bar), relaxing doesn't
909 affect insns written like this.
910 Note that we must always do this as we can't assume anything about
911 whether we're currently on a 32 bit boundary or not. Relaxing may
912 change this. */
913 fill_insn (0);
914
915 first.debug_sym_link = debug_sym_link;
916 debug_sym_link = (sym_linkS *) 0;
917
918 /* Parse the first instruction. */
919 if (! (first.insn = m32r_cgen_assemble_insn
920 (gas_cgen_cpu_desc, str1, & first.fields, first.buffer, & errmsg)))
921 {
922 as_bad ("%s", errmsg);
923 return;
924 }
925
926 /* Check it. */
927 if (CGEN_FIELDS_BITSIZE (&first.fields) != 16)
928 {
929 /* xgettext:c-format */
930 as_bad (_("not a 16 bit instruction '%s'"), str1);
931 return;
932 }
933 #ifdef E_M32R2_ARCH
934 else if ((enable_m32rx == 1)
935 /* FIXME: Need standard macro to perform this test. */
936 && ((CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
937 & (1 << MACH_M32R2))
938 && !((CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
939 & (1 << MACH_M32RX)))))
940 {
941 /* xgettext:c-format */
942 as_bad (_("instruction '%s' is for the M32R2 only"), str1);
943 return;
944 }
945 else if ((! enable_special
946 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL))
947 || (! enable_special_m32r
948 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL_M32R)))
949 #else
950 else if (! enable_special
951 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL))
952 #endif
953 {
954 /* xgettext:c-format */
955 as_bad (_("unknown instruction '%s'"), str1);
956 return;
957 }
958 else if (! enable_m32rx
959 /* FIXME: Need standard macro to perform this test. */
960 && (CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
961 == (1 << MACH_M32RX)))
962 {
963 /* xgettext:c-format */
964 as_bad (_("instruction '%s' is for the M32RX only"), str1);
965 return;
966 }
967
968 /* Check to see if this is an allowable parallel insn. */
969 if (parallel_p
970 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
971 {
972 /* xgettext:c-format */
973 as_bad (_("instruction '%s' cannot be executed in parallel."), str1);
974 return;
975 }
976
977 /* Restore the original assembly text, just in case it is needed. */
978 *str2 = save_str2;
979
980 /* Save the original string pointer. */
981 str3 = str1;
982
983 /* Advanced past the parsed string. */
984 str1 = str2 + 2;
985
986 /* Remember the entire string in case it is needed for error
987 messages. */
988 str2 = str3;
989
990 /* Convert the opcode to lower case. */
991 {
992 char *s2 = str1;
993
994 while (ISSPACE (*s2++))
995 continue;
996
997 --s2;
998
999 while (ISALNUM (*s2))
1000 {
1001 *s2 = TOLOWER (*s2);
1002 s2++;
1003 }
1004 }
1005
1006 /* Preserve any fixups that have been generated and reset the list
1007 to empty. */
1008 gas_cgen_save_fixups (0);
1009
1010 /* Get the indices of the operands of the instruction. */
1011 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
1012 doesn't seem right. Perhaps allow passing fields like we do insn. */
1013 /* FIXME: ALIAS insns do not have operands, so we use this function
1014 to find the equivalent insn and overwrite the value stored in our
1015 structure. We still need the original insn, however, since this
1016 may have certain attributes that are not present in the unaliased
1017 version (eg relaxability). When aliases behave differently this
1018 may have to change. */
1019 first.orig_insn = first.insn;
1020 {
1021 CGEN_FIELDS tmp_fields;
1022 first.insn = cgen_lookup_get_insn_operands
1023 (gas_cgen_cpu_desc, NULL, INSN_VALUE (first.buffer), NULL, 16,
1024 first.indices, &tmp_fields);
1025 }
1026
1027 if (first.insn == NULL)
1028 as_fatal (_("internal error: lookup/get operands failed"));
1029
1030 second.debug_sym_link = NULL;
1031
1032 /* Parse the second instruction. */
1033 if (! (second.insn = m32r_cgen_assemble_insn
1034 (gas_cgen_cpu_desc, str1, & second.fields, second.buffer, & errmsg)))
1035 {
1036 as_bad ("%s", errmsg);
1037 return;
1038 }
1039
1040 /* Check it. */
1041 if (CGEN_FIELDS_BITSIZE (&second.fields) != 16)
1042 {
1043 /* xgettext:c-format */
1044 as_bad (_("not a 16 bit instruction '%s'"), str1);
1045 return;
1046 }
1047 #ifdef E_M32R2_ARCH
1048 else if ((enable_m32rx == 1)
1049 /* FIXME: Need standard macro to perform this test. */
1050 && ((CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
1051 & (1 << MACH_M32R2))
1052 && !((CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
1053 & (1 << MACH_M32RX)))))
1054 {
1055 /* xgettext:c-format */
1056 as_bad (_("instruction '%s' is for the M32R2 only"), str1);
1057 return;
1058 }
1059 else if ((! enable_special
1060 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL))
1061 || (! enable_special_m32r
1062 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL_M32R)))
1063 #else
1064 else if (! enable_special
1065 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL))
1066 #endif
1067 {
1068 /* xgettext:c-format */
1069 as_bad (_("unknown instruction '%s'"), str1);
1070 return;
1071 }
1072 else if (! enable_m32rx
1073 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
1074 {
1075 /* xgettext:c-format */
1076 as_bad (_("instruction '%s' is for the M32RX only"), str1);
1077 return;
1078 }
1079
1080 /* Check to see if this is an allowable parallel insn. */
1081 if (parallel_p
1082 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_PIPE) == PIPE_NONE)
1083 {
1084 /* xgettext:c-format */
1085 as_bad (_("instruction '%s' cannot be executed in parallel."), str1);
1086 return;
1087 }
1088
1089 if (parallel_p && ! enable_m32rx)
1090 {
1091 if (CGEN_INSN_NUM (first.insn) != M32R_INSN_NOP
1092 && CGEN_INSN_NUM (second.insn) != M32R_INSN_NOP)
1093 {
1094 /* xgettext:c-format */
1095 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2);
1096 return;
1097 }
1098 }
1099
1100 /* Get the indices of the operands of the instruction. */
1101 second.orig_insn = second.insn;
1102 {
1103 CGEN_FIELDS tmp_fields;
1104 second.insn = cgen_lookup_get_insn_operands
1105 (gas_cgen_cpu_desc, NULL, INSN_VALUE (second.buffer), NULL, 16,
1106 second.indices, &tmp_fields);
1107 }
1108
1109 if (second.insn == NULL)
1110 as_fatal (_("internal error: lookup/get operands failed"));
1111
1112 /* We assume that if the first instruction writes to a register that is
1113 read by the second instruction it is because the programmer intended
1114 this to happen, (after all they have explicitly requested that these
1115 two instructions be executed in parallel). Although if the global
1116 variable warn_explicit_parallel_conflicts is true then we do generate
1117 a warning message. Similarly we assume that parallel branch and jump
1118 instructions are deliberate and should not produce errors. */
1119
1120 if (parallel_p && warn_explicit_parallel_conflicts)
1121 {
1122 if (first_writes_to_seconds_operands (&first, &second, FALSE))
1123 /* xgettext:c-format */
1124 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2);
1125
1126 if (first_writes_to_seconds_operands (&second, &first, FALSE))
1127 /* xgettext:c-format */
1128 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2);
1129 }
1130
1131 if (!parallel_p
1132 || (errmsg = (char *) can_make_parallel (&first, &second)) == NULL)
1133 {
1134 /* Get the fixups for the first instruction. */
1135 gas_cgen_swap_fixups (0);
1136
1137 /* Write it out. */
1138 expand_debug_syms (first.debug_sym_link, 1);
1139 gas_cgen_finish_insn (first.orig_insn, first.buffer,
1140 CGEN_FIELDS_BITSIZE (&first.fields), 0, NULL);
1141
1142 /* Force the top bit of the second insn to be set. */
1143 if (parallel_p)
1144 make_parallel (second.buffer);
1145
1146 /* Get its fixups. */
1147 gas_cgen_restore_fixups (0);
1148
1149 /* Write it out. */
1150 expand_debug_syms (second.debug_sym_link, 1);
1151 gas_cgen_finish_insn (second.orig_insn, second.buffer,
1152 CGEN_FIELDS_BITSIZE (&second.fields), 0, NULL);
1153 }
1154 /* Try swapping the instructions to see if they work that way. */
1155 else if (can_make_parallel (&second, &first) == NULL)
1156 {
1157 /* Write out the second instruction first. */
1158 expand_debug_syms (second.debug_sym_link, 1);
1159 gas_cgen_finish_insn (second.orig_insn, second.buffer,
1160 CGEN_FIELDS_BITSIZE (&second.fields), 0, NULL);
1161
1162 /* Force the top bit of the first instruction to be set. */
1163 make_parallel (first.buffer);
1164
1165 /* Get the fixups for the first instruction. */
1166 gas_cgen_restore_fixups (0);
1167
1168 /* Write out the first instruction. */
1169 expand_debug_syms (first.debug_sym_link, 1);
1170 gas_cgen_finish_insn (first.orig_insn, first.buffer,
1171 CGEN_FIELDS_BITSIZE (&first.fields), 0, NULL);
1172 }
1173 else
1174 {
1175 as_bad ("'%s': %s", str2, errmsg);
1176 return;
1177 }
1178
1179 if (CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL)
1180 || CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL))
1181 m32r_flags |= E_M32R_HAS_HIDDEN_INST;
1182 if (CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL_M32R)
1183 || CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL_M32R))
1184 m32r_flags |= E_M32R_HAS_BIT_INST;
1185 if (CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL_FLOAT)
1186 || CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL_FLOAT))
1187 m32r_flags |= E_M32R_HAS_FLOAT_INST;
1188
1189 /* Set these so m32r_fill_insn can use them. */
1190 prev_seg = now_seg;
1191 prev_subseg = now_subseg;
1192 }
1193
1194 void
1195 md_assemble (char *str)
1196 {
1197 m32r_insn insn;
1198 char *errmsg;
1199 char *str2 = NULL;
1200
1201 /* Initialize GAS's cgen interface for a new instruction. */
1202 gas_cgen_init_parse ();
1203
1204 /* Look for a parallel instruction separator. */
1205 if ((str2 = strstr (str, "||")) != NULL)
1206 {
1207 assemble_two_insns (str, str2, 1);
1208 m32r_flags |= E_M32R_HAS_PARALLEL;
1209 return;
1210 }
1211
1212 /* Also look for a sequential instruction separator. */
1213 if ((str2 = strstr (str, "->")) != NULL)
1214 {
1215 assemble_two_insns (str, str2, 0);
1216 return;
1217 }
1218
1219 insn.debug_sym_link = debug_sym_link;
1220 debug_sym_link = (sym_linkS *) 0;
1221
1222 insn.insn = m32r_cgen_assemble_insn
1223 (gas_cgen_cpu_desc, str, &insn.fields, insn.buffer, & errmsg);
1224
1225 if (!insn.insn)
1226 {
1227 as_bad ("%s", errmsg);
1228 return;
1229 }
1230
1231 #ifdef E_M32R2_ARCH
1232 if ((enable_m32rx == 1)
1233 /* FIXME: Need standard macro to perform this test. */
1234 && ((CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_MACH)
1235 & (1 << MACH_M32R2))
1236 && !((CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_MACH)
1237 & (1 << MACH_M32RX)))))
1238 {
1239 /* xgettext:c-format */
1240 as_bad (_("instruction '%s' is for the M32R2 only"), str);
1241 return;
1242 }
1243 else if ((! enable_special
1244 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL))
1245 || (! enable_special_m32r
1246 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL_M32R)))
1247 #else
1248 if (! enable_special
1249 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL))
1250 #endif
1251 {
1252 /* xgettext:c-format */
1253 as_bad (_("unknown instruction '%s'"), str);
1254 return;
1255 }
1256 else if (! enable_m32rx
1257 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
1258 {
1259 /* xgettext:c-format */
1260 as_bad (_("instruction '%s' is for the M32RX only"), str);
1261 return;
1262 }
1263
1264 if (CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL))
1265 m32r_flags |= E_M32R_HAS_HIDDEN_INST;
1266 if (CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL_M32R))
1267 m32r_flags |= E_M32R_HAS_BIT_INST;
1268 if (CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL_FLOAT))
1269 m32r_flags |= E_M32R_HAS_FLOAT_INST;
1270
1271 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
1272 {
1273 /* 32 bit insns must live on 32 bit boundaries. */
1274 if (prev_insn.insn || seen_relaxable_p)
1275 {
1276 /* ??? If calling fill_insn too many times turns us into a memory
1277 pig, can we call a fn to assemble a nop instead of
1278 !seen_relaxable_p? */
1279 fill_insn (0);
1280 }
1281
1282 expand_debug_syms (insn.debug_sym_link, 2);
1283
1284 /* Doesn't really matter what we pass for RELAX_P here. */
1285 gas_cgen_finish_insn (insn.insn, insn.buffer,
1286 CGEN_FIELDS_BITSIZE (&insn.fields), 1, NULL);
1287 }
1288 else
1289 {
1290 int on_32bit_boundary_p;
1291 int swap = FALSE;
1292
1293 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
1294 abort ();
1295
1296 insn.orig_insn = insn.insn;
1297
1298 /* If the previous insn was relaxable, then it may be expanded
1299 to fill the current 16 bit slot. Emit a NOP here to occupy
1300 this slot, so that we can start at optimizing at a 32 bit
1301 boundary. */
1302 if (prev_insn.insn && seen_relaxable_p && optimize)
1303 fill_insn (0);
1304
1305 if (enable_m32rx)
1306 {
1307 /* Get the indices of the operands of the instruction.
1308 FIXME: See assemble_parallel for notes on orig_insn. */
1309 {
1310 CGEN_FIELDS tmp_fields;
1311 insn.insn = cgen_lookup_get_insn_operands
1312 (gas_cgen_cpu_desc, NULL, INSN_VALUE (insn.buffer), NULL,
1313 16, insn.indices, &tmp_fields);
1314 }
1315
1316 if (insn.insn == NULL)
1317 as_fatal (_("internal error: lookup/get operands failed"));
1318 }
1319
1320 /* Compute whether we're on a 32 bit boundary or not.
1321 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1322 on_32bit_boundary_p = prev_insn.insn == NULL;
1323
1324 /* Change a frag to, if each insn to swap is in a different frag.
1325 It must keep only one instruction in a frag. */
1326 if (parallel() && on_32bit_boundary_p)
1327 {
1328 frag_wane (frag_now);
1329 frag_new (0);
1330 }
1331
1332 /* Look to see if this instruction can be combined with the
1333 previous instruction to make one, parallel, 32 bit instruction.
1334 If the previous instruction (potentially) changed the flow of
1335 program control, then it cannot be combined with the current
1336 instruction. If the current instruction is relaxable, then it
1337 might be replaced with a longer version, so we cannot combine it.
1338 Also if the output of the previous instruction is used as an
1339 input to the current instruction then it cannot be combined.
1340 Otherwise call can_make_parallel() with both orderings of the
1341 instructions to see if they can be combined. */
1342 if (! on_32bit_boundary_p
1343 && parallel ()
1344 && CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_RELAXABLE) == 0
1345 && ! writes_to_pc (&prev_insn)
1346 && ! first_writes_to_seconds_operands (&prev_insn, &insn, FALSE))
1347 {
1348 if (can_make_parallel (&prev_insn, &insn) == NULL)
1349 make_parallel (insn.buffer);
1350 else if (can_make_parallel (&insn, &prev_insn) == NULL)
1351 swap = TRUE;
1352 }
1353
1354 expand_debug_syms (insn.debug_sym_link, 1);
1355
1356 {
1357 int i;
1358 finished_insnS fi;
1359
1360 /* Ensure each pair of 16 bit insns is in the same frag. */
1361 frag_grow (4);
1362
1363 gas_cgen_finish_insn (insn.orig_insn, insn.buffer,
1364 CGEN_FIELDS_BITSIZE (&insn.fields),
1365 1 /* relax_p */, &fi);
1366 insn.addr = fi.addr;
1367 insn.frag = fi.frag;
1368 insn.num_fixups = fi.num_fixups;
1369 for (i = 0; i < fi.num_fixups; ++i)
1370 insn.fixups[i] = fi.fixups[i];
1371 }
1372
1373 if (swap)
1374 {
1375 int i, tmp;
1376
1377 #define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1378
1379 /* Swap the two insns */
1380 SWAP_BYTES (prev_insn.addr[0], insn.addr[0]);
1381 SWAP_BYTES (prev_insn.addr[1], insn.addr[1]);
1382
1383 target_make_parallel (insn.addr);
1384
1385 /* Swap any relaxable frags recorded for the two insns. */
1386 /* FIXME: Clarify. relaxation precludes parallel insns */
1387 if (prev_insn.frag->fr_opcode == prev_insn.addr)
1388 prev_insn.frag->fr_opcode = insn.addr;
1389 else if (insn.frag->fr_opcode == insn.addr)
1390 insn.frag->fr_opcode = prev_insn.addr;
1391
1392 /* Change a frag to, if each insn is in a different frag.
1393 It must keep only one instruction in a frag. */
1394 if (prev_insn.frag != insn.frag)
1395 {
1396 for (i = 0; i < prev_insn.num_fixups; ++i)
1397 prev_insn.fixups[i]->fx_frag = insn.frag;
1398 for (i = 0; i < insn.num_fixups; ++i)
1399 insn.fixups[i]->fx_frag = prev_insn.frag;
1400 }
1401 else
1402 {
1403 /* Update the addresses in any fixups.
1404 Note that we don't have to handle the case where each insn is in
1405 a different frag as we ensure they're in the same frag above. */
1406 for (i = 0; i < prev_insn.num_fixups; ++i)
1407 prev_insn.fixups[i]->fx_where += 2;
1408 for (i = 0; i < insn.num_fixups; ++i)
1409 insn.fixups[i]->fx_where -= 2;
1410 }
1411 }
1412
1413 /* Keep track of whether we've seen a pair of 16 bit insns.
1414 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1415 if (on_32bit_boundary_p)
1416 prev_insn = insn;
1417 else
1418 prev_insn.insn = NULL;
1419
1420 /* If the insn needs the following one to be on a 32 bit boundary
1421 (e.g. subroutine calls), fill this insn's slot. */
1422 if (on_32bit_boundary_p
1423 && CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_FILL_SLOT) != 0)
1424 fill_insn (0);
1425
1426 /* If this is a relaxable insn (can be replaced with a larger version)
1427 mark the fact so that we can emit an alignment directive for a
1428 following 32 bit insn if we see one. */
1429 if (CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_RELAXABLE) != 0)
1430 seen_relaxable_p = 1;
1431 }
1432
1433 /* Set these so m32r_fill_insn can use them. */
1434 prev_seg = now_seg;
1435 prev_subseg = now_subseg;
1436 }
1437
1438 /* The syntax in the manual says constants begin with '#'.
1439 We just ignore it. */
1440
1441 void
1442 md_operand (expressionS *expressionP)
1443 {
1444 if (*input_line_pointer == '#')
1445 {
1446 input_line_pointer++;
1447 expression (expressionP);
1448 }
1449 }
1450
1451 valueT
1452 md_section_align (segT segment, valueT size)
1453 {
1454 int align = bfd_get_section_alignment (stdoutput, segment);
1455
1456 return ((size + (1 << align) - 1) & -(1 << align));
1457 }
1458
1459 symbolS *
1460 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1461 {
1462 return 0;
1463 }
1464
1465 /* .scomm pseudo-op handler.
1467
1468 This is a new pseudo-op to handle putting objects in .scommon.
1469 By doing this the linker won't need to do any work,
1470 and more importantly it removes the implicit -G arg necessary to
1471 correctly link the object file. */
1472
1473 static void
1474 m32r_scomm (int ignore ATTRIBUTE_UNUSED)
1475 {
1476 char *name;
1477 char c;
1478 char *p;
1479 offsetT size;
1480 symbolS *symbolP;
1481 offsetT align;
1482 int align2;
1483
1484 c = get_symbol_name (&name);
1485
1486 /* Just after name is now '\0'. */
1487 p = input_line_pointer;
1488 *p = c;
1489 SKIP_WHITESPACE_AFTER_NAME ();
1490 if (*input_line_pointer != ',')
1491 {
1492 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1493 ignore_rest_of_line ();
1494 return;
1495 }
1496
1497 /* Skip ','. */
1498 input_line_pointer++;
1499 if ((size = get_absolute_expression ()) < 0)
1500 {
1501 /* xgettext:c-format */
1502 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size);
1503 ignore_rest_of_line ();
1504 return;
1505 }
1506
1507 /* The third argument to .scomm is the alignment. */
1508 if (*input_line_pointer != ',')
1509 align = 8;
1510 else
1511 {
1512 ++input_line_pointer;
1513 align = get_absolute_expression ();
1514 if (align <= 0)
1515 {
1516 as_warn (_("ignoring bad alignment"));
1517 align = 8;
1518 }
1519 }
1520
1521 /* Convert to a power of 2 alignment. */
1522 if (align)
1523 {
1524 for (align2 = 0; (align & 1) == 0; align >>= 1, ++align2)
1525 continue;
1526 if (align != 1)
1527 {
1528 as_bad (_("Common alignment not a power of 2"));
1529 ignore_rest_of_line ();
1530 return;
1531 }
1532 }
1533 else
1534 align2 = 0;
1535
1536 *p = 0;
1537 symbolP = symbol_find_or_make (name);
1538 *p = c;
1539
1540 if (S_IS_DEFINED (symbolP))
1541 {
1542 /* xgettext:c-format */
1543 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1544 S_GET_NAME (symbolP));
1545 ignore_rest_of_line ();
1546 return;
1547 }
1548
1549 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1550 {
1551 /* xgettext:c-format */
1552 as_bad (_("Length of .scomm \"%s\" is already %ld. Not changed to %ld."),
1553 S_GET_NAME (symbolP),
1554 (long) S_GET_VALUE (symbolP),
1555 (long) size);
1556
1557 ignore_rest_of_line ();
1558 return;
1559 }
1560
1561 if (symbol_get_obj (symbolP)->local)
1562 {
1563 segT old_sec = now_seg;
1564 int old_subsec = now_subseg;
1565 char *pfrag;
1566
1567 record_alignment (sbss_section, align2);
1568 subseg_set (sbss_section, 0);
1569
1570 if (align2)
1571 frag_align (align2, 0, 0);
1572
1573 if (S_GET_SEGMENT (symbolP) == sbss_section)
1574 symbol_get_frag (symbolP)->fr_symbol = 0;
1575
1576 symbol_set_frag (symbolP, frag_now);
1577
1578 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1579 (char *) 0);
1580 *pfrag = 0;
1581 S_SET_SIZE (symbolP, size);
1582 S_SET_SEGMENT (symbolP, sbss_section);
1583 S_CLEAR_EXTERNAL (symbolP);
1584 subseg_set (old_sec, old_subsec);
1585 }
1586 else
1587 {
1588 S_SET_VALUE (symbolP, (valueT) size);
1589 S_SET_ALIGN (symbolP, align2);
1590 S_SET_EXTERNAL (symbolP);
1591 S_SET_SEGMENT (symbolP, &scom_section);
1592 }
1593
1594 demand_empty_rest_of_line ();
1595 }
1596
1597 /* The target specific pseudo-ops which we support. */
1598 const pseudo_typeS md_pseudo_table[] =
1599 {
1600 { "word", cons, 4 },
1601 { "fillinsn", fill_insn, 0 },
1602 { "scomm", m32r_scomm, 0 },
1603 { "debugsym", debug_sym, 0 },
1604 { "m32r", allow_m32rx, 0 },
1605 { "m32rx", allow_m32rx, 1 },
1606 { "m32r2", allow_m32rx, 2 },
1607 { "little", little, 1 },
1608 { "big", little, 0 },
1609 { NULL, NULL, 0 }
1610 };
1611
1612 /* Interface to relax_segment. */
1614
1615 /* FIXME: Build table by hand, get it working, then machine generate. */
1616
1617 const relax_typeS md_relax_table[] =
1618 {
1619 /* The fields are:
1620 1) most positive reach of this state,
1621 2) most negative reach of this state,
1622 3) how many bytes this mode will add to the size of the current frag
1623 4) which index into the table to try if we can't fit into this one. */
1624
1625 /* The first entry must be unused because an `rlx_more' value of zero ends
1626 each list. */
1627 {1, 1, 0, 0},
1628
1629 /* The displacement used by GAS is from the end of the 2 byte insn,
1630 so we subtract 2 from the following. */
1631 /* 16 bit insn, 8 bit disp -> 10 bit range.
1632 This doesn't handle a branch in the right slot at the border:
1633 the "& -4" isn't taken into account. It's not important enough to
1634 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1635 case). */
1636 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1637 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1638 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1639 /* Same thing, but with leading nop for alignment. */
1640 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1641 };
1642
1643 long
1644 m32r_relax_frag (segT segment, fragS *fragP, long stretch)
1645 {
1646 /* Address of branch insn. */
1647 long address = fragP->fr_address + fragP->fr_fix - 2;
1648 long growth = 0;
1649
1650 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1651 if (fragP->fr_subtype == 2)
1652 {
1653 if ((address & 3) != 0)
1654 {
1655 fragP->fr_subtype = 3;
1656 growth = 2;
1657 }
1658 }
1659 else if (fragP->fr_subtype == 3)
1660 {
1661 if ((address & 3) == 0)
1662 {
1663 fragP->fr_subtype = 2;
1664 growth = -2;
1665 }
1666 }
1667 else
1668 {
1669 growth = relax_frag (segment, fragP, stretch);
1670
1671 /* Long jump on odd halfword boundary? */
1672 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1673 {
1674 fragP->fr_subtype = 3;
1675 growth += 2;
1676 }
1677 }
1678
1679 return growth;
1680 }
1681
1682 /* Return an initial guess of the length by which a fragment must grow to
1683 hold a branch to reach its destination.
1684 Also updates fr_type/fr_subtype as necessary.
1685
1686 Called just before doing relaxation.
1687 Any symbol that is now undefined will not become defined.
1688 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1689 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1690 Although it may not be explicit in the frag, pretend fr_var starts
1691 with a 0 value. */
1692
1693 int
1694 md_estimate_size_before_relax (fragS *fragP, segT segment)
1695 {
1696 /* The only thing we have to handle here are symbols outside of the
1697 current segment. They may be undefined or in a different segment in
1698 which case linker scripts may place them anywhere.
1699 However, we can't finish the fragment here and emit the reloc as insn
1700 alignment requirements may move the insn about. */
1701 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
1702 || S_IS_EXTERNAL (fragP->fr_symbol)
1703 || S_IS_WEAK (fragP->fr_symbol))
1704 {
1705 /* The symbol is undefined in this segment.
1706 Change the relaxation subtype to the max allowable and leave
1707 all further handling to md_convert_frag. */
1708 fragP->fr_subtype = 2;
1709
1710 {
1711 const CGEN_INSN *insn;
1712 int i;
1713
1714 /* Update the recorded insn.
1715 Fortunately we don't have to look very far.
1716 FIXME: Change this to record in the instruction the next higher
1717 relaxable insn to use. */
1718 for (i = 0, insn = fragP->fr_cgen.insn; i < 4; i++, insn++)
1719 {
1720 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1721 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
1722 == 0)
1723 && CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAXED))
1724 break;
1725 }
1726 if (i == 4)
1727 abort ();
1728
1729 fragP->fr_cgen.insn = insn;
1730 return 2;
1731 }
1732 }
1733
1734 return md_relax_table[fragP->fr_subtype].rlx_length;
1735 }
1736
1737 /* *FRAGP has been relaxed to its final size, and now needs to have
1738 the bytes inside it modified to conform to the new size.
1739
1740 Called after relaxation is finished.
1741 fragP->fr_type == rs_machine_dependent.
1742 fragP->fr_subtype is the subtype of what the address relaxed to. */
1743
1744 void
1745 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
1746 segT sec,
1747 fragS *fragP)
1748 {
1749 char *opcode;
1750 char *displacement;
1751 int target_address;
1752 int opcode_address;
1753 int extension;
1754 int addend;
1755
1756 opcode = fragP->fr_opcode;
1757
1758 /* Address opcode resides at in file space. */
1759 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1760
1761 switch (fragP->fr_subtype)
1762 {
1763 case 1:
1764 extension = 0;
1765 displacement = &opcode[1];
1766 break;
1767 case 2:
1768 opcode[0] |= 0x80;
1769 extension = 2;
1770 displacement = &opcode[1];
1771 break;
1772 case 3:
1773 opcode[2] = opcode[0] | 0x80;
1774 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1775 opcode_address += 2;
1776 extension = 4;
1777 displacement = &opcode[3];
1778 break;
1779 default:
1780 abort ();
1781 }
1782
1783 if (S_GET_SEGMENT (fragP->fr_symbol) != sec
1784 || S_IS_EXTERNAL (fragP->fr_symbol)
1785 || S_IS_WEAK (fragP->fr_symbol))
1786 {
1787 /* Symbol must be resolved by linker. */
1788 if (fragP->fr_offset & 3)
1789 as_warn (_("Addend to unresolved symbol not on word boundary."));
1790 #ifdef USE_M32R_OLD_RELOC
1791 addend = fragP->fr_offset >> 2; /* Old M32R used USE_REL. */
1792 #else
1793 addend = 0;
1794 #endif
1795 }
1796 else
1797 {
1798 /* Address we want to reach in file space. */
1799 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
1800 addend = (target_address - (opcode_address & -4)) >> 2;
1801 }
1802
1803 /* Create a relocation for symbols that must be resolved by the linker.
1804 Otherwise output the completed insn. */
1805
1806 if (S_GET_SEGMENT (fragP->fr_symbol) != sec
1807 || S_IS_EXTERNAL (fragP->fr_symbol)
1808 || S_IS_WEAK (fragP->fr_symbol))
1809 {
1810 fixS *fixP;
1811
1812 gas_assert (fragP->fr_subtype != 1);
1813 gas_assert (fragP->fr_cgen.insn != 0);
1814
1815 fixP = gas_cgen_record_fixup (fragP,
1816 /* Offset of branch insn in frag. */
1817 fragP->fr_fix + extension - 4,
1818 fragP->fr_cgen.insn,
1819 4 /* Length. */,
1820 /* FIXME: quick hack. */
1821 cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
1822 M32R_OPERAND_DISP24),
1823 fragP->fr_cgen.opinfo,
1824 fragP->fr_symbol, fragP->fr_offset);
1825 if (fragP->fr_cgen.opinfo)
1826 fixP->fx_r_type = fragP->fr_cgen.opinfo;
1827 }
1828
1829 #define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1830
1831 md_number_to_chars (displacement, (valueT) addend,
1832 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1833
1834 fragP->fr_fix += extension;
1835 }
1836
1837 /* Functions concerning relocs. */
1839
1840 /* The location from which a PC relative jump should be calculated,
1841 given a PC relative reloc. */
1842
1843 long
1844 md_pcrel_from_section (fixS *fixP, segT sec)
1845 {
1846 if (fixP->fx_addsy != (symbolS *) NULL
1847 && (! S_IS_DEFINED (fixP->fx_addsy)
1848 || S_GET_SEGMENT (fixP->fx_addsy) != sec
1849 || S_IS_EXTERNAL (fixP->fx_addsy)
1850 || S_IS_WEAK (fixP->fx_addsy)))
1851 {
1852 if (S_GET_SEGMENT (fixP->fx_addsy) != sec
1853 && S_IS_DEFINED (fixP->fx_addsy)
1854 && ! S_IS_EXTERNAL (fixP->fx_addsy)
1855 && ! S_IS_WEAK (fixP->fx_addsy))
1856 return fixP->fx_offset;
1857
1858 /* The symbol is undefined (or is defined but not in this section).
1859 Let the linker figure it out. */
1860 return 0;
1861 }
1862
1863 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1864 }
1865
1866 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1867 Returns BFD_RELOC_NONE if no reloc type can be found.
1868 *FIXP may be modified if desired. */
1869
1870 bfd_reloc_code_real_type
1871 md_cgen_lookup_reloc (const CGEN_INSN *insn ATTRIBUTE_UNUSED,
1872 const CGEN_OPERAND *operand,
1873 fixS *fixP)
1874 {
1875 switch (operand->type)
1876 {
1877 case M32R_OPERAND_DISP8: return BFD_RELOC_M32R_10_PCREL;
1878 case M32R_OPERAND_DISP16: return BFD_RELOC_M32R_18_PCREL;
1879 case M32R_OPERAND_DISP24: return BFD_RELOC_M32R_26_PCREL;
1880 case M32R_OPERAND_UIMM24: return BFD_RELOC_M32R_24;
1881 case M32R_OPERAND_HI16:
1882 case M32R_OPERAND_SLO16:
1883 case M32R_OPERAND_ULO16:
1884 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1885 if (fixP->fx_cgen.opinfo != 0)
1886 return fixP->fx_cgen.opinfo;
1887 break;
1888 default:
1889 /* Avoid -Wall warning. */
1890 break;
1891 }
1892 return BFD_RELOC_NONE;
1893 }
1894
1895 /* Record a HI16 reloc for later matching with its LO16 cousin. */
1896
1897 static void
1898 m32r_record_hi16 (int reloc_type,
1899 fixS *fixP,
1900 segT seg ATTRIBUTE_UNUSED)
1901 {
1902 struct m32r_hi_fixup *hi_fixup;
1903
1904 gas_assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1905 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1906
1907 hi_fixup = XNEW (struct m32r_hi_fixup);
1908 hi_fixup->fixp = fixP;
1909 hi_fixup->seg = now_seg;
1910 hi_fixup->next = m32r_hi_fixup_list;
1911
1912 m32r_hi_fixup_list = hi_fixup;
1913 }
1914
1915 /* Called while parsing an instruction to create a fixup.
1916 We need to check for HI16 relocs and queue them up for later sorting. */
1917
1918 fixS *
1919 m32r_cgen_record_fixup_exp (fragS *frag,
1920 int where,
1921 const CGEN_INSN *insn,
1922 int length,
1923 const CGEN_OPERAND *operand,
1924 int opinfo,
1925 expressionS *exp)
1926 {
1927 fixS *fixP;
1928 bfd_reloc_code_real_type r_type = BFD_RELOC_UNUSED;
1929
1930 if (m32r_check_fixup (exp, &r_type))
1931 as_bad (_("Invalid PIC expression."));
1932
1933 fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
1934 operand, opinfo, exp);
1935
1936 switch (operand->type)
1937 {
1938 case M32R_OPERAND_HI16:
1939 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1940 if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_SLO
1941 || fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_ULO)
1942 m32r_record_hi16 (fixP->fx_cgen.opinfo, fixP, now_seg);
1943 break;
1944
1945 default:
1946 /* Avoid -Wall warning. */
1947 break;
1948 }
1949
1950 switch (r_type)
1951 {
1952 case BFD_RELOC_UNUSED:
1953 default:
1954 return fixP;
1955
1956 case BFD_RELOC_M32R_GOTPC24:
1957 if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_SLO)
1958 r_type = BFD_RELOC_M32R_GOTPC_HI_SLO;
1959 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_ULO)
1960 r_type = BFD_RELOC_M32R_GOTPC_HI_ULO;
1961 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_LO16)
1962 r_type = BFD_RELOC_M32R_GOTPC_LO;
1963 break;
1964
1965 case BFD_RELOC_M32R_GOT24:
1966 if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_SLO)
1967 r_type = BFD_RELOC_M32R_GOT16_HI_SLO;
1968 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_ULO)
1969 r_type = BFD_RELOC_M32R_GOT16_HI_ULO;
1970 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_LO16)
1971 r_type = BFD_RELOC_M32R_GOT16_LO;
1972 break;
1973
1974 case BFD_RELOC_M32R_GOTOFF:
1975 if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_SLO)
1976 r_type = BFD_RELOC_M32R_GOTOFF_HI_SLO;
1977 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_HI16_ULO)
1978 r_type = BFD_RELOC_M32R_GOTOFF_HI_ULO;
1979 else if (fixP->fx_cgen.opinfo == BFD_RELOC_M32R_LO16)
1980 r_type = BFD_RELOC_M32R_GOTOFF_LO;
1981 break;
1982
1983 case BFD_RELOC_M32R_26_PLTREL:
1984 as_bad (_("Invalid PIC expression."));
1985 break;
1986 }
1987
1988 fixP->fx_r_type = r_type;
1989
1990 return fixP;
1991 }
1992
1993 /* Return BFD reloc type from opinfo field in a fixS.
1994 It's tricky using fx_r_type in m32r_frob_file because the values
1995 are BFD_RELOC_UNUSED + operand number. */
1996 #define FX_OPINFO_R_TYPE(f) ((f)->fx_cgen.opinfo)
1997
1998 /* Sort any unmatched HI16 relocs so that they immediately precede
1999 the corresponding LO16 reloc. This is called before md_apply_fix and
2000 tc_gen_reloc. */
2001
2002 void
2003 m32r_frob_file (void)
2004 {
2005 struct m32r_hi_fixup *l;
2006
2007 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
2008 {
2009 segment_info_type *seginfo;
2010 int pass;
2011
2012 gas_assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_SLO
2013 || FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_ULO);
2014
2015 /* Check quickly whether the next fixup happens to be a matching low. */
2016 if (l->fixp->fx_next != NULL
2017 && FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_M32R_LO16
2018 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
2019 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
2020 continue;
2021
2022 /* Look through the fixups for this segment for a matching `low'.
2023 When we find one, move the high/shigh just in front of it. We do
2024 this in two passes. In the first pass, we try to find a
2025 unique `low'. In the second pass, we permit multiple high's
2026 relocs for a single `low'. */
2027 seginfo = seg_info (l->seg);
2028 for (pass = 0; pass < 2; pass++)
2029 {
2030 fixS *f;
2031 fixS *prev;
2032
2033 prev = NULL;
2034 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
2035 {
2036 /* Check whether this is a `low' fixup which matches l->fixp. */
2037 if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_M32R_LO16
2038 && f->fx_addsy == l->fixp->fx_addsy
2039 && f->fx_offset == l->fixp->fx_offset
2040 && (pass == 1
2041 || prev == NULL
2042 || (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_SLO
2043 && FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_ULO)
2044 || prev->fx_addsy != f->fx_addsy
2045 || prev->fx_offset != f->fx_offset))
2046 {
2047 fixS **pf;
2048
2049 /* Move l->fixp before f. */
2050 for (pf = &seginfo->fix_root;
2051 *pf != l->fixp;
2052 pf = & (*pf)->fx_next)
2053 gas_assert (*pf != NULL);
2054
2055 *pf = l->fixp->fx_next;
2056
2057 l->fixp->fx_next = f;
2058 if (prev == NULL)
2059 seginfo->fix_root = l->fixp;
2060 else
2061 prev->fx_next = l->fixp;
2062
2063 break;
2064 }
2065
2066 prev = f;
2067 }
2068
2069 if (f != NULL)
2070 break;
2071
2072 if (pass == 1
2073 && warn_unmatched_high)
2074 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
2075 _("Unmatched high/shigh reloc"));
2076 }
2077 }
2078 }
2079
2080 /* See whether we need to force a relocation into the output file.
2081 This is used to force out switch and PC relative relocations when
2082 relaxing. */
2083
2084 int
2085 m32r_force_relocation (fixS *fix)
2086 {
2087 if (generic_force_reloc (fix))
2088 return 1;
2089
2090 if (! m32r_relax)
2091 return 0;
2092
2093 return fix->fx_pcrel;
2094 }
2095
2096 /* Write a value out to the object file, using the appropriate endianness. */
2098
2099 void
2100 md_number_to_chars (char *buf, valueT val, int n)
2101 {
2102 if (target_big_endian)
2103 number_to_chars_bigendian (buf, val, n);
2104 else
2105 number_to_chars_littleendian (buf, val, n);
2106 }
2107
2108 /* Turn a string in input_line_pointer into a floating point constant
2109 of type TYPE, and store the appropriate bytes in *LITP. The number
2110 of LITTLENUMS emitted is stored in *SIZEP. An error message is
2111 returned, or NULL on OK. */
2112
2113 /* Equal to MAX_PRECISION in atof-ieee.c. */
2114 #define MAX_LITTLENUMS 6
2115
2116 const char *
2117 md_atof (int type, char *litP, int *sizeP)
2118 {
2119 return ieee_md_atof (type, litP, sizeP, target_big_endian);
2120 }
2121
2122 void
2123 m32r_elf_section_change_hook (void)
2124 {
2125 /* If we have reached the end of a section and we have just emitted a
2126 16 bit insn, then emit a nop to make sure that the section ends on
2127 a 32 bit boundary. */
2128
2129 if (prev_insn.insn || seen_relaxable_p)
2130 (void) m32r_fill_insn (0);
2131 }
2132
2133 /* Return true if can adjust the reloc to be relative to its section
2134 (such as .data) instead of relative to some symbol. */
2135
2136 bfd_boolean
2137 m32r_fix_adjustable (fixS *fixP)
2138 {
2139 bfd_reloc_code_real_type reloc_type;
2140
2141 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
2142 {
2143 const CGEN_INSN *insn = NULL;
2144 int opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
2145 const CGEN_OPERAND *operand =
2146 cgen_operand_lookup_by_num(gas_cgen_cpu_desc, opindex);
2147
2148 reloc_type = md_cgen_lookup_reloc (insn, operand, fixP);
2149 }
2150 else
2151 reloc_type = fixP->fx_r_type;
2152
2153 if (fixP->fx_addsy == NULL)
2154 return 1;
2155
2156 /* Prevent all adjustments to global symbols. */
2157 if (S_IS_EXTERNAL (fixP->fx_addsy))
2158 return 0;
2159 if (S_IS_WEAK (fixP->fx_addsy))
2160 return 0;
2161
2162 if (pic_code
2163 && (reloc_type == BFD_RELOC_M32R_24
2164 || reloc_type == BFD_RELOC_M32R_26_PCREL
2165 || reloc_type == BFD_RELOC_M32R_HI16_SLO
2166 || reloc_type == BFD_RELOC_M32R_HI16_ULO
2167 || reloc_type == BFD_RELOC_M32R_LO16))
2168 return 0;
2169
2170 if (reloc_type == BFD_RELOC_M32R_GOT24
2171 || reloc_type == BFD_RELOC_M32R_26_PLTREL
2172 || reloc_type == BFD_RELOC_M32R_GOTPC_HI_SLO
2173 || reloc_type == BFD_RELOC_M32R_GOTPC_HI_ULO
2174 || reloc_type == BFD_RELOC_M32R_GOTPC_LO
2175 || reloc_type == BFD_RELOC_M32R_GOT16_HI_SLO
2176 || reloc_type == BFD_RELOC_M32R_GOT16_HI_ULO
2177 || reloc_type == BFD_RELOC_M32R_GOT16_LO)
2178 return 0;
2179
2180 /* We need the symbol name for the VTABLE entries. */
2181 if (reloc_type == BFD_RELOC_VTABLE_INHERIT
2182 || reloc_type == BFD_RELOC_VTABLE_ENTRY)
2183 return 0;
2184
2185 return 1;
2186 }
2187
2188 void
2189 m32r_elf_final_processing (void)
2190 {
2191 if (use_parallel)
2192 m32r_flags |= E_M32R_HAS_PARALLEL;
2193 elf_elfheader (stdoutput)->e_flags |= m32r_flags;
2194 }
2195
2196 /* Translate internal representation of relocation info to BFD target
2197 format. */
2198
2199 arelent *
2200 tc_gen_reloc (asection * section, fixS * fixP)
2201 {
2202 arelent * reloc;
2203 bfd_reloc_code_real_type code;
2204
2205 reloc = XNEW (arelent);
2206
2207 reloc->sym_ptr_ptr = XNEW (asymbol *);
2208 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
2209 reloc->address = fixP->fx_frag->fr_address + fixP->fx_where;
2210
2211 if (fixP->fx_pcrel)
2212 {
2213 if (fixP->fx_r_type == BFD_RELOC_32)
2214 fixP->fx_r_type = BFD_RELOC_32_PCREL;
2215 else if (fixP->fx_r_type == BFD_RELOC_16)
2216 {
2217 fixP->fx_r_type = BFD_RELOC_16_PCREL;
2218 bfd_set_error (bfd_error_bad_value);
2219 }
2220 }
2221
2222 code = fixP->fx_r_type;
2223 if (pic_code)
2224 {
2225 #ifdef DEBUG_PIC
2226 printf("%s",bfd_get_reloc_code_name(code));
2227 #endif
2228 switch (code)
2229 {
2230 case BFD_RELOC_M32R_26_PCREL:
2231 code = BFD_RELOC_M32R_26_PLTREL;
2232 break;
2233
2234 case BFD_RELOC_M32R_24:
2235 if (fixP->fx_addsy != NULL
2236 && strcmp (S_GET_NAME (fixP->fx_addsy), GOT_NAME) == 0)
2237 code = BFD_RELOC_M32R_GOTPC24;
2238 else
2239 code = BFD_RELOC_M32R_GOT24;
2240 break;
2241
2242 case BFD_RELOC_M32R_HI16_ULO:
2243 if (fixP->fx_addsy != NULL
2244 && strcmp (S_GET_NAME (fixP->fx_addsy), GOT_NAME) == 0)
2245 code = BFD_RELOC_M32R_GOTPC_HI_ULO;
2246 else
2247 code = BFD_RELOC_M32R_GOT16_HI_ULO;
2248 break;
2249
2250 case BFD_RELOC_M32R_HI16_SLO:
2251 if (fixP->fx_addsy != NULL
2252 && strcmp (S_GET_NAME (fixP->fx_addsy), GOT_NAME) == 0)
2253 code = BFD_RELOC_M32R_GOTPC_HI_SLO;
2254 else
2255 code = BFD_RELOC_M32R_GOT16_HI_SLO;
2256 break;
2257
2258 case BFD_RELOC_M32R_LO16:
2259 if (fixP->fx_addsy != NULL
2260 && strcmp (S_GET_NAME (fixP->fx_addsy), GOT_NAME) == 0)
2261 code = BFD_RELOC_M32R_GOTPC_LO;
2262 else
2263 code = BFD_RELOC_M32R_GOT16_LO;
2264 break;
2265
2266 default:
2267 break;
2268 }
2269 #ifdef DEBUG_PIC
2270 printf(" => %s",bfd_get_reloc_code_name(code));
2271 #endif
2272 }
2273
2274 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
2275
2276 #ifdef DEBUG_PIC
2277 printf(" => %s\n",reloc->howto->name);
2278 #endif
2279
2280 if (reloc->howto == (reloc_howto_type *) NULL)
2281 {
2282 as_bad_where (fixP->fx_file, fixP->fx_line,
2283 _("internal error: can't export reloc type %d (`%s')"),
2284 fixP->fx_r_type, bfd_get_reloc_code_name (code));
2285 return NULL;
2286 }
2287
2288 /* Use fx_offset for these cases. */
2289 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
2290 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
2291 || fixP->fx_r_type == BFD_RELOC_32_PCREL)
2292 reloc->addend = fixP->fx_offset;
2293 else if ((!pic_code
2294 && code != BFD_RELOC_M32R_26_PLTREL)
2295 && fixP->fx_pcrel
2296 && fixP->fx_addsy != NULL
2297 && (S_GET_SEGMENT(fixP->fx_addsy) != section)
2298 && S_IS_DEFINED (fixP->fx_addsy)
2299 && ! S_IS_EXTERNAL(fixP->fx_addsy)
2300 && ! S_IS_WEAK(fixP->fx_addsy))
2301 /* Already used fx_offset in the opcode field itself. */
2302 reloc->addend = fixP->fx_offset;
2303 else
2304 reloc->addend = fixP->fx_addnumber;
2305
2306 return reloc;
2307 }
2308
2309 inline static char *
2310 m32r_end_of_match (char *cont, const char *what)
2311 {
2312 int len = strlen (what);
2313
2314 if (strncasecmp (cont, what, strlen (what)) == 0
2315 && ! is_part_of_name (cont[len]))
2316 return cont + len;
2317
2318 return NULL;
2319 }
2320
2321 int
2322 m32r_parse_name (char const *name,
2323 expressionS *exprP,
2324 enum expr_mode mode,
2325 char *nextcharP)
2326 {
2327 char *next = input_line_pointer;
2328 char *next_end;
2329 int reloc_type;
2330 operatorT op_type;
2331 segT segment;
2332
2333 exprP->X_op_symbol = NULL;
2334 exprP->X_md = BFD_RELOC_UNUSED;
2335
2336 if (strcmp (name, GOT_NAME) == 0)
2337 {
2338 if (! GOT_symbol)
2339 GOT_symbol = symbol_find_or_make (name);
2340
2341 exprP->X_add_symbol = GOT_symbol;
2342 no_suffix:
2343 /* If we have an absolute symbol or a
2344 reg, then we know its value now. */
2345 segment = S_GET_SEGMENT (exprP->X_add_symbol);
2346 if (mode != expr_defer && segment == absolute_section)
2347 {
2348 exprP->X_op = O_constant;
2349 exprP->X_add_number = S_GET_VALUE (exprP->X_add_symbol);
2350 exprP->X_add_symbol = NULL;
2351 }
2352 else if (mode != expr_defer && segment == reg_section)
2353 {
2354 exprP->X_op = O_register;
2355 exprP->X_add_number = S_GET_VALUE (exprP->X_add_symbol);
2356 exprP->X_add_symbol = NULL;
2357 }
2358 else
2359 {
2360 exprP->X_op = O_symbol;
2361 exprP->X_add_number = 0;
2362 }
2363
2364 return 1;
2365 }
2366
2367 exprP->X_add_symbol = symbol_find_or_make (name);
2368
2369 if (*nextcharP != '@')
2370 goto no_suffix;
2371 else if ((next_end = m32r_end_of_match (next + 1, "GOTOFF")))
2372 {
2373 reloc_type = BFD_RELOC_M32R_GOTOFF;
2374 op_type = O_PIC_reloc;
2375 }
2376 else if ((next_end = m32r_end_of_match (next + 1, "GOT")))
2377 {
2378 reloc_type = BFD_RELOC_M32R_GOT24;
2379 op_type = O_PIC_reloc;
2380 }
2381 else if ((next_end = m32r_end_of_match (next + 1, "PLT")))
2382 {
2383 reloc_type = BFD_RELOC_M32R_26_PLTREL;
2384 op_type = O_PIC_reloc;
2385 }
2386 else
2387 goto no_suffix;
2388
2389 *input_line_pointer = *nextcharP;
2390 input_line_pointer = next_end;
2391 *nextcharP = *input_line_pointer;
2392 *input_line_pointer = '\0';
2393
2394 exprP->X_op = op_type;
2395 exprP->X_add_number = 0;
2396 exprP->X_md = reloc_type;
2397
2398 return 1;
2399 }
2400
2401 int
2402 m32r_cgen_parse_fix_exp(int opinfo, expressionS *exp)
2403 {
2404 if (exp->X_op == O_PIC_reloc
2405 && exp->X_md == BFD_RELOC_M32R_26_PLTREL)
2406 {
2407 exp->X_op = O_symbol;
2408 opinfo = exp->X_md;
2409 }
2410
2411 return opinfo;
2412 }
2413