]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-m32r.c
* ecoff.c: Convert to ISO-C.
[thirdparty/binutils-gdb.git] / gas / config / tc-m32r.c
CommitLineData
4bf4a882 1/* tc-m32r.c -- Assembler for the Renesas M32R.
ae6063d4 2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
ab3e48dc 3 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GAS, the GNU Assembler.
6
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)
10 any later version.
11
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.
16
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. */
21
22#include <stdio.h>
252b5132 23#include "as.h"
3882b010 24#include "safe-ctype.h"
ab3e48dc 25#include "subsegs.h"
252b5132
RH
26#include "symcat.h"
27#include "opcodes/m32r-desc.h"
28#include "opcodes/m32r-opc.h"
29#include "cgen.h"
30
31/* Linked list of symbols that are debugging symbols to be defined as the
32 beginning of the current instruction. */
33typedef struct sym_link
34{
35 struct sym_link *next;
ab3e48dc 36 symbolS *symbol;
252b5132
RH
37} sym_linkS;
38
ab3e48dc
KH
39static sym_linkS *debug_sym_link = (sym_linkS *) 0;
40
252b5132
RH
41/* Structure to hold all of the different components describing
42 an individual instruction. */
43typedef struct
44{
ab3e48dc
KH
45 const CGEN_INSN *insn;
46 const CGEN_INSN *orig_insn;
47 CGEN_FIELDS fields;
252b5132 48#if CGEN_INT_INSN_P
ab3e48dc 49 CGEN_INSN_INT buffer[1];
252b5132
RH
50#define INSN_VALUE(buf) (*(buf))
51#else
ab3e48dc 52 unsigned char buffer[CGEN_MAX_INSN_SIZE];
252b5132
RH
53#define INSN_VALUE(buf) (buf)
54#endif
ab3e48dc
KH
55 char *addr;
56 fragS *frag;
57 int num_fixups;
58 fixS *fixups[GAS_CGEN_MAX_FIXUPS];
59 int indices[MAX_OPERAND_INSTANCES];
60 sym_linkS *debug_sym_link;
252b5132
RH
61}
62m32r_insn;
63
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). */
ab3e48dc 66static m32r_insn prev_insn;
252b5132
RH
67
68/* Non-zero if we've seen a relaxable insn since the last 32 bit
69 alignment request. */
70static int seen_relaxable_p = 0;
71
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. */
76static int m32r_relax;
77
ab3e48dc
KH
78#if 0
79/* Not supported yet. */
252b5132
RH
80/* If non-NULL, pointer to cpu description file to read.
81 This allows runtime additions to the assembler. */
ab3e48dc 82static const char *m32r_cpu_desc;
252b5132
RH
83#endif
84
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). */
94static int warn_unmatched_high = 0;
95
925c058e
DE
96/* Non-zero if -m32rx has been specified, in which case support for the
97 extended M32RX instruction set should be enabled. */
98static int enable_m32rx = 0;
99
100/* Non-zero if -m32rx -hidden has been specified, in which case support for
101 the special M32RX instruction set should be enabled. */
102static int enable_special = 0;
103
104/* Non-zero if the programmer should be warned when an explicit parallel
105 instruction might have constraint violations. */
106static int warn_explicit_parallel_conflicts = 1;
107
108/* Non-zero if insns can be made parallel. */
109static int optimize;
252b5132 110
ab3e48dc 111/* Stuff for .scomm symbols. */
252b5132
RH
112static segT sbss_section;
113static asection scom_section;
114static asymbol scom_symbol;
115
116const char comment_chars[] = ";";
117const char line_comment_chars[] = "#";
118const char line_separator_chars[] = "";
119const char EXP_CHARS[] = "eE";
120const char FLT_CHARS[] = "dD";
121
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.
128
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
82efde3a 131 corresponding LO relocation. */
252b5132
RH
132
133struct m32r_hi_fixup
134{
ab3e48dc
KH
135 /* Next HI fixup. */
136 struct m32r_hi_fixup *next;
137
138 /* This fixup. */
139 fixS *fixp;
252b5132 140
ab3e48dc
KH
141 /* The section this fixup is in. */
142 segT seg;
252b5132
RH
143};
144
145/* The list of unmatched HI relocs. */
146
ab3e48dc 147static struct m32r_hi_fixup *m32r_hi_fixup_list;
252b5132 148\f
78a0c6fb
AM
149static void allow_m32rx PARAMS ((int));
150
925c058e
DE
151static void
152allow_m32rx (on)
153 int on;
154{
155 enable_m32rx = on;
156
157 if (stdoutput != NULL)
158 bfd_set_arch_mach (stdoutput, TARGET_ARCH,
159 enable_m32rx ? bfd_mach_m32rx : bfd_mach_m32r);
160}
252b5132 161\f
925c058e 162#define M32R_SHORTOPTS "O"
ab3e48dc
KH
163
164const char *md_shortopts = M32R_SHORTOPTS;
252b5132
RH
165
166struct option md_longopts[] =
167{
8ad9e709
NC
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},
925c058e 176 {"m32rx", no_argument, NULL, OPTION_M32RX},
925c058e
DE
177 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN_PARALLEL},
178 {"Wp", no_argument, NULL, OPTION_WARN_PARALLEL},
925c058e
DE
179 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
180 {"Wnp", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
925c058e 181 {"hidden", no_argument, NULL, OPTION_SPECIAL},
252b5132 182 /* Sigh. I guess all warnings must now have both variants. */
2f3519a2
NC
183 {"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
184 {"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
d3388653
NC
185 {"no-warn-unmatched-high", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
186 {"Wnuh", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
252b5132 187
ab3e48dc
KH
188#if 0
189 /* Not supported yet. */
8ad9e709
NC
190#define OPTION_RELAX (OPTION_NO_WARN_UNMATCHED + 1)
191#define OPTION_CPU_DESC (OPTION_RELAX + 1)
252b5132 192 {"relax", no_argument, NULL, OPTION_RELAX},
252b5132
RH
193 {"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
194#endif
252b5132
RH
195 {NULL, no_argument, NULL, 0}
196};
ab3e48dc 197
252b5132
RH
198size_t md_longopts_size = sizeof (md_longopts);
199
200int
201md_parse_option (c, arg)
ab3e48dc 202 int c;
78a0c6fb 203 char *arg ATTRIBUTE_UNUSED;
252b5132
RH
204{
205 switch (c)
206 {
925c058e
DE
207 case 'O':
208 optimize = 1;
209 break;
210
8ad9e709
NC
211 case OPTION_M32R:
212 allow_m32rx (0);
213 break;
ab3e48dc 214
925c058e
DE
215 case OPTION_M32RX:
216 allow_m32rx (1);
217 break;
ab3e48dc 218
925c058e
DE
219 case OPTION_WARN_PARALLEL:
220 warn_explicit_parallel_conflicts = 1;
221 break;
ab3e48dc 222
925c058e
DE
223 case OPTION_NO_WARN_PARALLEL:
224 warn_explicit_parallel_conflicts = 0;
225 break;
226
227 case OPTION_SPECIAL:
228 if (enable_m32rx)
229 enable_special = 1;
230 else
231 {
232 /* Pretend that we do not recognise this option. */
233 as_bad (_("Unrecognised option: -hidden"));
234 return 0;
235 }
236 break;
252b5132
RH
237
238 case OPTION_WARN_UNMATCHED:
239 warn_unmatched_high = 1;
240 break;
241
242 case OPTION_NO_WARN_UNMATCHED:
243 warn_unmatched_high = 0;
244 break;
ab3e48dc
KH
245
246#if 0
247 /* Not supported yet. */
252b5132
RH
248 case OPTION_RELAX:
249 m32r_relax = 1;
250 break;
251 case OPTION_CPU_DESC:
252 m32r_cpu_desc = arg;
253 break;
254#endif
255
256 default:
257 return 0;
258 }
ab3e48dc 259
252b5132
RH
260 return 1;
261}
262
263void
264md_show_usage (stream)
ab3e48dc 265 FILE *stream;
252b5132
RH
266{
267 fprintf (stream, _(" M32R specific command line options:\n"));
268
ded0aeb7
NC
269 fprintf (stream, _("\
270 -m32r disable support for the m32rx instruction set\n"));
925c058e
DE
271 fprintf (stream, _("\
272 -m32rx support the extended m32rx instruction set\n"));
273 fprintf (stream, _("\
274 -O try to combine instructions in parallel\n"));
275
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"));
252b5132
RH
288
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"));
297
298#if 0
299 fprintf (stream, _("\
300 -relax create linker relaxable code\n"));
301 fprintf (stream, _("\
302 -cpu-desc provide runtime cpu description file\n"));
303#endif
ab3e48dc 304}
252b5132
RH
305
306static void fill_insn PARAMS ((int));
307static void m32r_scomm PARAMS ((int));
308static void debug_sym PARAMS ((int));
309static void expand_debug_syms PARAMS ((sym_linkS *, int));
310
311/* Set by md_assemble for use by m32r_fill_insn. */
312static subsegT prev_subseg;
313static segT prev_seg;
314
315/* The target specific pseudo-ops which we support. */
316const pseudo_typeS md_pseudo_table[] =
317{
318 { "word", cons, 4 },
319 { "fillinsn", fill_insn, 0 },
320 { "scomm", m32r_scomm, 0 },
321 { "debugsym", debug_sym, 0 },
ab3e48dc 322 /* Not documented as so far there is no need for them.... */
925c058e
DE
323 { "m32r", allow_m32rx, 0 },
324 { "m32rx", allow_m32rx, 1 },
252b5132
RH
325 { NULL, NULL, 0 }
326};
327
328/* FIXME: Should be machine generated. */
329#define NOP_INSN 0x7000
ab3e48dc 330#define PAR_NOP_INSN 0xf000 /* Can only be used in 2nd slot. */
252b5132 331
0a9ef439
RH
332/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
333 of an rs_align_code fragment. */
252b5132 334
0a9ef439
RH
335void
336m32r_handle_align (fragp)
015c05c1 337 fragS *fragp;
252b5132 338{
0a9ef439
RH
339 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
340 static const unsigned char multi_nop_pattern[] = { 0x70, 0x00, 0xf0, 0x00 };
252b5132 341
0a9ef439
RH
342 int bytes, fix;
343 char *p;
ab3e48dc 344
0a9ef439
RH
345 if (fragp->fr_type != rs_align_code)
346 return;
347
348 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
349 p = fragp->fr_literal + fragp->fr_fix;
350 fix = 0;
351
352 if (bytes & 1)
353 {
354 fix = 1;
355 *p++ = 0;
356 bytes--;
252b5132
RH
357 }
358
0a9ef439
RH
359 if (bytes & 2)
360 {
361 memcpy (p, nop_pattern, 2);
362 p += 2;
363 bytes -= 2;
364 fix += 2;
365 }
366
367 memcpy (p, multi_nop_pattern, 4);
368
369 fragp->fr_fix += fix;
370 fragp->fr_var = 4;
252b5132
RH
371}
372
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.
375
376 This is done via an alignment specification since branch relaxing
377 may make it unnecessary.
378
379 Internally, we need to output one of these each time a 32 bit insn is
380 seen after an insn that is relaxable. */
381
382static void
383fill_insn (ignore)
78a0c6fb 384 int ignore ATTRIBUTE_UNUSED;
252b5132 385{
0a9ef439 386 frag_align_code (2, 0);
252b5132
RH
387 prev_insn.insn = NULL;
388 seen_relaxable_p = 0;
389}
390
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. */
396
397static void
398debug_sym (ignore)
78a0c6fb 399 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
400{
401 register char *name;
402 register char delim;
403 register char *end_name;
404 register symbolS *symbolP;
405 register sym_linkS *link;
406
407 name = input_line_pointer;
408 delim = get_symbol_end ();
409 end_name = input_line_pointer;
ab3e48dc 410
252b5132
RH
411 if ((symbolP = symbol_find (name)) == NULL
412 && (symbolP = md_undefined_symbol (name)) == NULL)
413 {
414 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
415 }
416
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));
421
422 else
423 {
424 link = (sym_linkS *) xmalloc (sizeof (sym_linkS));
425 link->symbol = symbolP;
426 link->next = debug_sym_link;
427 debug_sym_link = link;
f412ead8 428 symbol_get_obj (symbolP)->local = 1;
252b5132
RH
429 }
430
431 *end_name = delim;
432 demand_empty_rest_of_line ();
433}
434
435/* Second pass to expanding the debug symbols, go through linked
436 list of symbols and reassign the address. */
437
438static void
439expand_debug_syms (syms, align)
440 sym_linkS *syms;
441 int align;
442{
443 char *save_input_line = input_line_pointer;
444 sym_linkS *next_syms;
445
446 if (!syms)
447 return;
448
a8150a88 449 (void) frag_align_code (align, 0);
ab3e48dc 450 for (; syms != (sym_linkS *) 0; syms = next_syms)
252b5132
RH
451 {
452 symbolS *symbolP = syms->symbol;
453 next_syms = syms->next;
454 input_line_pointer = ".\n";
455 pseudo_set (symbolP);
ab3e48dc 456 free ((char *) syms);
252b5132
RH
457 }
458
459 input_line_pointer = save_input_line;
460}
461
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. */
465
466int
467m32r_fill_insn (done)
468 int done;
469{
470 if (prev_seg != NULL)
471 {
ab3e48dc 472 segT seg = now_seg;
252b5132
RH
473 subsegT subseg = now_subseg;
474
475 subseg_set (prev_seg, prev_subseg);
ab3e48dc 476
252b5132
RH
477 fill_insn (0);
478
479 subseg_set (seg, subseg);
480 }
481
482 if (done && debug_sym_link)
483 {
484 expand_debug_syms (debug_sym_link, 1);
ab3e48dc 485 debug_sym_link = (sym_linkS *) 0;
252b5132
RH
486 }
487
488 return 1;
489}
490\f
491void
492md_begin ()
493{
494 flagword applicable;
ab3e48dc
KH
495 segT seg;
496 subsegT subseg;
252b5132
RH
497
498 /* Initialize the `cgen' interface. */
ab3e48dc 499
252b5132
RH
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,
503 CGEN_ENDIAN_BIG,
504 CGEN_CPU_OPEN_END);
505 m32r_cgen_init_asm (gas_cgen_cpu_desc);
506
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);
511
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);
514
ab3e48dc
KH
515#if 0
516 /* Not supported yet. */
252b5132
RH
517 /* If a runtime cpu description file was provided, parse it. */
518 if (m32r_cpu_desc != NULL)
519 {
ab3e48dc 520 const char *errmsg;
252b5132
RH
521
522 errmsg = cgen_read_cpu_file (gas_cgen_cpu_desc, m32r_cpu_desc);
523 if (errmsg != NULL)
524 as_bad ("%s: %s", m32r_cpu_desc, errmsg);
525 }
526#endif
527
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]. */
530 seg = now_seg;
531 subseg = now_subseg;
532
533 /* The sbss section is for local .scomm symbols. */
534 sbss_section = subseg_new (".sbss", 0);
ab3e48dc 535
252b5132
RH
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);
ab3e48dc
KH
539
540#if 0
541 /* What does this do? [see perform_an_assembly_pass] */
252b5132
RH
542 seg_info (bss_section)->bss = 1;
543#endif
544
545 subseg_set (seg, subseg);
546
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";
ab3e48dc
KH
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;
252b5132 555 scom_symbol.name = ".scommon";
ab3e48dc 556 scom_symbol.section = &scom_section;
252b5132 557
925c058e 558 allow_m32rx (enable_m32rx);
002de68b 559
07726851 560 gas_cgen_initialize_saved_fixups_array ();
925c058e
DE
561}
562
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)))
568
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. */
572
78a0c6fb
AM
573static int first_writes_to_seconds_operands
574 PARAMS ((m32r_insn *, m32r_insn *, const int));
575
925c058e
DE
576static int
577first_writes_to_seconds_operands (a, b, check_outputs)
ab3e48dc
KH
578 m32r_insn *a;
579 m32r_insn *b;
580 const int check_outputs;
925c058e 581{
ab3e48dc
KH
582 const CGEN_OPINST *a_operands = CGEN_INSN_OPERANDS (a->insn);
583 const CGEN_OPINST *b_ops = CGEN_INSN_OPERANDS (b->insn);
925c058e
DE
584 int a_index;
585
586 /* If at least one of the instructions takes no operands, then there is
587 nothing to check. There really are instructions without operands,
588 eg 'nop'. */
589 if (a_operands == NULL || b_ops == NULL)
590 return 0;
ab3e48dc 591
925c058e
DE
592 /* Scan the operand list of 'a' looking for an output operand. */
593 for (a_index = 0;
594 a_operands->type != CGEN_OPINST_END;
595 a_index ++, a_operands ++)
596 {
597 if (a_operands->type == CGEN_OPINST_OUTPUT)
598 {
599 int b_index;
ab3e48dc 600 const CGEN_OPINST *b_operands = b_ops;
925c058e
DE
601
602 /* Special Case:
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
ab3e48dc
KH
606 than by cgen.... */
607
925c058e
DE
608 if (OPERAND_IS_COND_BIT (a_operands, a->indices, a_index))
609 {
610 /* Scan operand list of 'b' looking for another reference to the
611 condition bit, which goes in the right direction. */
612 for (b_index = 0;
613 b_operands->type != CGEN_OPINST_END;
ab3e48dc 614 b_index++, b_operands++)
925c058e
DE
615 {
616 if ((b_operands->type
617 == (check_outputs
618 ? CGEN_OPINST_OUTPUT
619 : CGEN_OPINST_INPUT))
620 && OPERAND_IS_COND_BIT (b_operands, b->indices, b_index))
621 return 1;
622 }
623 }
624 else
625 {
626 /* Scan operand list of 'b' looking for an operand that
627 references the same hardware element, and which goes in the
628 right direction. */
629 for (b_index = 0;
630 b_operands->type != CGEN_OPINST_END;
ab3e48dc 631 b_index++, b_operands++)
925c058e
DE
632 {
633 if ((b_operands->type
634 == (check_outputs
635 ? CGEN_OPINST_OUTPUT
636 : CGEN_OPINST_INPUT))
637 && (b_operands->hw_type == a_operands->hw_type)
ab3e48dc 638 && (a->indices[a_index] == b->indices[b_index]))
925c058e
DE
639 return 1;
640 }
641 }
642 }
643 }
644
645 return 0;
646}
647
648/* Returns true if the insn can (potentially) alter the program counter. */
649
78a0c6fb
AM
650static int writes_to_pc PARAMS ((m32r_insn *));
651
925c058e
DE
652static int
653writes_to_pc (a)
ab3e48dc 654 m32r_insn *a;
925c058e 655{
ab3e48dc
KH
656#if 0
657 /* Once PC operands are working.... */
658 const CGEN_OPINST *a_operands == CGEN_INSN_OPERANDS (gas_cgen_cpu_desc,
659 a->insn);
925c058e
DE
660
661 if (a_operands == NULL)
662 return 0;
663
664 while (a_operands->type != CGEN_OPINST_END)
665 {
666 if (a_operands->operand != NULL
ab3e48dc
KH
667 && CGEN_OPERAND_INDEX (gas_cgen_cpu_desc,
668 a_operands->operand) == M32R_OPERAND_PC)
925c058e 669 return 1;
ab3e48dc
KH
670
671 a_operands++;
925c058e
DE
672 }
673#else
674 if (CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_UNCOND_CTI)
675 || CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_COND_CTI))
676 return 1;
677#endif
678 return 0;
679}
680
ab3e48dc
KH
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. */
925c058e 683
78a0c6fb
AM
684static const char *can_make_parallel PARAMS ((m32r_insn *, m32r_insn *));
685
925c058e
DE
686static const char *
687can_make_parallel (a, b)
ab3e48dc
KH
688 m32r_insn *a;
689 m32r_insn *b;
925c058e
DE
690{
691 PIPE_ATTR a_pipe;
692 PIPE_ATTR b_pipe;
ab3e48dc 693
925c058e 694 /* Make sure the instructions are the right length. */
ab3e48dc
KH
695 if (CGEN_FIELDS_BITSIZE (&a->fields) != 16
696 || CGEN_FIELDS_BITSIZE (&b->fields) != 16)
697 abort ();
925c058e 698
b34976b6 699 if (first_writes_to_seconds_operands (a, b, TRUE))
925c058e 700 return _("Instructions write to the same destination register.");
ab3e48dc 701
925c058e
DE
702 a_pipe = CGEN_INSN_ATTR_VALUE (a->insn, CGEN_INSN_PIPE);
703 b_pipe = CGEN_INSN_ATTR_VALUE (b->insn, CGEN_INSN_PIPE);
704
705 /* Make sure that the instructions use the correct execution pipelines. */
ab3e48dc 706 if (a_pipe == PIPE_NONE
925c058e
DE
707 || b_pipe == PIPE_NONE)
708 return _("Instructions do not use parallel execution pipelines.");
709
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. */
ab3e48dc 713 if (a_pipe == PIPE_S
925c058e
DE
714 || b_pipe == PIPE_O)
715 return _("Instructions share the same execution pipeline");
ab3e48dc 716
925c058e
DE
717 return NULL;
718}
719
720/* Force the top bit of the second 16-bit insn to be set. */
721
78a0c6fb
AM
722static void make_parallel PARAMS ((CGEN_INSN_BYTES_PTR));
723
925c058e
DE
724static void
725make_parallel (buffer)
726 CGEN_INSN_BYTES_PTR buffer;
727{
728#if CGEN_INT_INSN_P
729 *buffer |= 0x8000;
730#else
ab3e48dc 731 buffer[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
925c058e
DE
732 |= 0x80;
733#endif
252b5132
RH
734}
735
925c058e 736/* Same as make_parallel except buffer contains the bytes in target order. */
252b5132 737
78a0c6fb
AM
738static void target_make_parallel PARAMS ((char *));
739
925c058e
DE
740static void
741target_make_parallel (buffer)
742 char *buffer;
743{
ab3e48dc 744 buffer[CGEN_CPU_ENDIAN (gas_cgen_cpu_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
925c058e
DE
745 |= 0x80;
746}
747
748/* Assemble two instructions with an explicit parallel operation (||) or
749 sequential operation (->). */
750
78a0c6fb
AM
751static void assemble_two_insns PARAMS ((char *, char *, int));
752
925c058e
DE
753static void
754assemble_two_insns (str, str2, parallel_p)
ab3e48dc
KH
755 char *str;
756 char *str2;
757 int parallel_p;
925c058e 758{
ab3e48dc 759 char *str3;
925c058e
DE
760 m32r_insn first;
761 m32r_insn second;
ab3e48dc
KH
762 char *errmsg;
763 char save_str2 = *str2;
925c058e 764
ab3e48dc
KH
765 /* Seperate the two instructions. */
766 *str2 = 0;
925c058e
DE
767
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
773 change this. */
774 fill_insn (0);
775
776 first.debug_sym_link = debug_sym_link;
ab3e48dc 777 debug_sym_link = (sym_linkS *) 0;
925c058e
DE
778
779 /* Parse the first instruction. */
780 if (! (first.insn = m32r_cgen_assemble_insn
781 (gas_cgen_cpu_desc, str, & first.fields, first.buffer, & errmsg)))
782 {
783 as_bad (errmsg);
784 return;
785 }
786
787 /* Check it. */
788 if (CGEN_FIELDS_BITSIZE (&first.fields) != 16)
789 {
ab3e48dc 790 /* xgettext:c-format */
925c058e
DE
791 as_bad (_("not a 16 bit instruction '%s'"), str);
792 return;
793 }
794 else if (! enable_special
795 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_SPECIAL))
796 {
ab3e48dc 797 /* xgettext:c-format */
925c058e
DE
798 as_bad (_("unknown instruction '%s'"), str);
799 return;
800 }
801 else if (! enable_m32rx
ab3e48dc
KH
802 /* FIXME: Need standard macro to perform this test. */
803 && (CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_MACH)
804 == (1 << MACH_M32RX)))
925c058e 805 {
ab3e48dc 806 /* xgettext:c-format */
925c058e
DE
807 as_bad (_("instruction '%s' is for the M32RX only"), str);
808 return;
809 }
ab3e48dc 810
925c058e 811 /* Check to see if this is an allowable parallel insn. */
ab3e48dc
KH
812 if (parallel_p
813 && CGEN_INSN_ATTR_VALUE (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
925c058e 814 {
ab3e48dc 815 /* xgettext:c-format */
925c058e
DE
816 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
817 return;
818 }
ab3e48dc
KH
819
820 /* Restore the original assembly text, just in case it is needed. */
821 *str2 = save_str2;
822
823 /* Save the original string pointer. */
824 str3 = str;
825
826 /* Advanced past the parsed string. */
827 str = str2 + 2;
828
829 /* Remember the entire string in case it is needed for error
830 messages. */
831 str2 = str3;
925c058e
DE
832
833 /* Convert the opcode to lower case. */
834 {
835 char *s2 = str;
ab3e48dc 836
3882b010 837 while (ISSPACE (*s2++))
925c058e
DE
838 continue;
839
840 --s2;
841
3882b010 842 while (ISALNUM (*s2))
925c058e 843 {
3882b010 844 *s2 = TOLOWER (*s2);
ab3e48dc 845 s2++;
925c058e
DE
846 }
847 }
ab3e48dc
KH
848
849 /* Preserve any fixups that have been generated and reset the list
850 to empty. */
002de68b 851 gas_cgen_save_fixups (0);
925c058e
DE
852
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;
863 {
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);
868 }
ab3e48dc 869
925c058e
DE
870 if (first.insn == NULL)
871 as_fatal (_("internal error: lookup/get operands failed"));
872
873 second.debug_sym_link = NULL;
874
875 /* Parse the second instruction. */
876 if (! (second.insn = m32r_cgen_assemble_insn
877 (gas_cgen_cpu_desc, str, & second.fields, second.buffer, & errmsg)))
878 {
879 as_bad (errmsg);
880 return;
881 }
882
883 /* Check it. */
884 if (CGEN_FIELDS_BITSIZE (&second.fields) != 16)
885 {
ab3e48dc 886 /* xgettext:c-format */
925c058e
DE
887 as_bad (_("not a 16 bit instruction '%s'"), str);
888 return;
889 }
890 else if (! enable_special
891 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_SPECIAL))
892 {
ab3e48dc 893 /* xgettext:c-format */
925c058e
DE
894 as_bad (_("unknown instruction '%s'"), str);
895 return;
896 }
897 else if (! enable_m32rx
898 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
899 {
ab3e48dc 900 /* xgettext:c-format */
925c058e
DE
901 as_bad (_("instruction '%s' is for the M32RX only"), str);
902 return;
903 }
904
905 /* Check to see if this is an allowable parallel insn. */
ab3e48dc
KH
906 if (parallel_p
907 && CGEN_INSN_ATTR_VALUE (second.insn, CGEN_INSN_PIPE) == PIPE_NONE)
925c058e 908 {
ab3e48dc 909 /* xgettext:c-format */
925c058e
DE
910 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
911 return;
912 }
ab3e48dc 913
925c058e
DE
914 if (parallel_p && ! enable_m32rx)
915 {
916 if (CGEN_INSN_NUM (first.insn) != M32R_INSN_NOP
917 && CGEN_INSN_NUM (second.insn) != M32R_INSN_NOP)
918 {
ab3e48dc 919 /* xgettext:c-format */
925c058e
DE
920 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2);
921 return;
922 }
923 }
924
925 /* Get the indices of the operands of the instruction. */
926 second.orig_insn = second.insn;
927 {
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);
932 }
ab3e48dc 933
925c058e
DE
934 if (second.insn == NULL)
935 as_fatal (_("internal error: lookup/get operands failed"));
936
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. */
ab3e48dc 944
925c058e
DE
945 if (parallel_p && warn_explicit_parallel_conflicts)
946 {
b34976b6 947 if (first_writes_to_seconds_operands (&first, &second, FALSE))
ab3e48dc 948 /* xgettext:c-format */
925c058e 949 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2);
ab3e48dc 950
b34976b6 951 if (first_writes_to_seconds_operands (&second, &first, FALSE))
ab3e48dc 952 /* xgettext:c-format */
925c058e
DE
953 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2);
954 }
ab3e48dc 955
925c058e 956 if (!parallel_p
ab3e48dc 957 || (errmsg = (char *) can_make_parallel (&first, &second)) == NULL)
925c058e
DE
958 {
959 /* Get the fixups for the first instruction. */
002de68b 960 gas_cgen_swap_fixups (0);
925c058e
DE
961
962 /* Write it out. */
963 expand_debug_syms (first.debug_sym_link, 1);
964 gas_cgen_finish_insn (first.orig_insn, first.buffer,
ab3e48dc
KH
965 CGEN_FIELDS_BITSIZE (&first.fields), 0, NULL);
966
925c058e
DE
967 /* Force the top bit of the second insn to be set. */
968 if (parallel_p)
969 make_parallel (second.buffer);
970
971 /* Get its fixups. */
002de68b 972 gas_cgen_restore_fixups (0);
925c058e
DE
973
974 /* Write it out. */
975 expand_debug_syms (second.debug_sym_link, 1);
976 gas_cgen_finish_insn (second.orig_insn, second.buffer,
ab3e48dc 977 CGEN_FIELDS_BITSIZE (&second.fields), 0, NULL);
925c058e
DE
978 }
979 /* Try swapping the instructions to see if they work that way. */
ab3e48dc 980 else if (can_make_parallel (&second, &first) == NULL)
925c058e
DE
981 {
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,
ab3e48dc
KH
985 CGEN_FIELDS_BITSIZE (&second.fields), 0, NULL);
986
925c058e
DE
987 /* Force the top bit of the first instruction to be set. */
988 make_parallel (first.buffer);
989
990 /* Get the fixups for the first instruction. */
002de68b 991 gas_cgen_restore_fixups (0);
925c058e
DE
992
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,
ab3e48dc 996 CGEN_FIELDS_BITSIZE (&first.fields), 0, NULL);
925c058e
DE
997 }
998 else
999 {
1000 as_bad ("'%s': %s", str2, errmsg);
1001 return;
1002 }
ab3e48dc 1003
925c058e
DE
1004 /* Set these so m32r_fill_insn can use them. */
1005 prev_seg = now_seg;
1006 prev_subseg = now_subseg;
1007}
252b5132
RH
1008
1009void
1010md_assemble (str)
ab3e48dc 1011 char *str;
252b5132
RH
1012{
1013 m32r_insn insn;
ab3e48dc
KH
1014 char *errmsg;
1015 char *str2 = NULL;
252b5132
RH
1016
1017 /* Initialize GAS's cgen interface for a new instruction. */
1018 gas_cgen_init_parse ();
1019
925c058e
DE
1020 /* Look for a parallel instruction seperator. */
1021 if ((str2 = strstr (str, "||")) != NULL)
1022 {
1023 assemble_two_insns (str, str2, 1);
1024 return;
1025 }
1026
1027 /* Also look for a sequential instruction seperator. */
1028 if ((str2 = strstr (str, "->")) != NULL)
1029 {
1030 assemble_two_insns (str, str2, 0);
1031 return;
1032 }
ab3e48dc 1033
252b5132 1034 insn.debug_sym_link = debug_sym_link;
ab3e48dc 1035 debug_sym_link = (sym_linkS *) 0;
252b5132
RH
1036
1037 insn.insn = m32r_cgen_assemble_insn
ab3e48dc
KH
1038 (gas_cgen_cpu_desc, str, &insn.fields, insn.buffer, & errmsg);
1039
252b5132
RH
1040 if (!insn.insn)
1041 {
1042 as_bad (errmsg);
1043 return;
1044 }
1045
925c058e
DE
1046 if (! enable_special
1047 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_SPECIAL))
1048 {
ab3e48dc 1049 /* xgettext:c-format */
925c058e
DE
1050 as_bad (_("unknown instruction '%s'"), str);
1051 return;
1052 }
1053 else if (! enable_m32rx
1054 && CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
1055 {
ab3e48dc 1056 /* xgettext:c-format */
925c058e
DE
1057 as_bad (_("instruction '%s' is for the M32RX only"), str);
1058 return;
1059 }
ab3e48dc 1060
252b5132
RH
1061 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
1062 {
1063 /* 32 bit insns must live on 32 bit boundaries. */
1064 if (prev_insn.insn || seen_relaxable_p)
1065 {
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? */
1069 fill_insn (0);
1070 }
1071
1072 expand_debug_syms (insn.debug_sym_link, 2);
1073
1074 /* Doesn't really matter what we pass for RELAX_P here. */
1075 gas_cgen_finish_insn (insn.insn, insn.buffer,
ab3e48dc 1076 CGEN_FIELDS_BITSIZE (&insn.fields), 1, NULL);
252b5132
RH
1077 }
1078 else
1079 {
1080 int on_32bit_boundary_p;
b34976b6 1081 int swap = FALSE;
252b5132
RH
1082
1083 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
ab3e48dc 1084 abort ();
252b5132
RH
1085
1086 insn.orig_insn = insn.insn;
1087
925c058e
DE
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
1091 boundary. */
1092 if (prev_insn.insn && seen_relaxable_p && optimize)
1093 fill_insn (0);
ab3e48dc 1094
925c058e
DE
1095 if (enable_m32rx)
1096 {
1097 /* Get the indices of the operands of the instruction.
1098 FIXME: See assemble_parallel for notes on orig_insn. */
1099 {
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);
1104 }
ab3e48dc 1105
925c058e
DE
1106 if (insn.insn == NULL)
1107 as_fatal (_("internal error: lookup/get operands failed"));
1108 }
1109
252b5132
RH
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;
1113
925c058e
DE
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. */
ab3e48dc
KH
1124 if (! on_32bit_boundary_p
1125 && enable_m32rx
1126 && optimize
1127 && CGEN_INSN_ATTR_VALUE (insn.orig_insn, CGEN_INSN_RELAXABLE) == 0
1128 && ! writes_to_pc (&prev_insn)
b34976b6 1129 && ! first_writes_to_seconds_operands (&prev_insn, &insn, FALSE))
925c058e 1130 {
ab3e48dc 1131 if (can_make_parallel (&prev_insn, &insn) == NULL)
925c058e 1132 make_parallel (insn.buffer);
ab3e48dc 1133 else if (can_make_parallel (&insn, &prev_insn) == NULL)
b34976b6 1134 swap = TRUE;
925c058e 1135 }
252b5132
RH
1136
1137 expand_debug_syms (insn.debug_sym_link, 1);
1138
1139 {
1140 int i;
1141 finished_insnS fi;
1142
1143 /* Ensure each pair of 16 bit insns is in the same frag. */
1144 frag_grow (4);
1145
1146 gas_cgen_finish_insn (insn.orig_insn, insn.buffer,
ab3e48dc
KH
1147 CGEN_FIELDS_BITSIZE (&insn.fields),
1148 1 /* relax_p */, &fi);
252b5132
RH
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];
1154 }
1155
925c058e
DE
1156 if (swap)
1157 {
ab3e48dc 1158 int i, tmp;
925c058e
DE
1159
1160#define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1161
1162 /* Swap the two insns */
ab3e48dc
KH
1163 SWAP_BYTES (prev_insn.addr[0], insn.addr[0]);
1164 SWAP_BYTES (prev_insn.addr[1], insn.addr[1]);
925c058e
DE
1165
1166 target_make_parallel (insn.addr);
1167
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;
1174
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;
1182 }
252b5132
RH
1183
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)
1187 prev_insn = insn;
1188 else
1189 prev_insn.insn = NULL;
ab3e48dc 1190
252b5132
RH
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)
1195 fill_insn (0);
1196
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;
1202 }
1203
1204 /* Set these so m32r_fill_insn can use them. */
1205 prev_seg = now_seg;
1206 prev_subseg = now_subseg;
1207}
1208
1209/* The syntax in the manual says constants begin with '#'.
1210 We just ignore it. */
1211
ab3e48dc 1212void
252b5132 1213md_operand (expressionP)
ab3e48dc 1214 expressionS *expressionP;
252b5132 1215{
ab3e48dc 1216 if (*input_line_pointer == '#')
252b5132 1217 {
ab3e48dc 1218 input_line_pointer++;
252b5132
RH
1219 expression (expressionP);
1220 }
1221}
1222
1223valueT
1224md_section_align (segment, size)
ab3e48dc 1225 segT segment;
252b5132
RH
1226 valueT size;
1227{
1228 int align = bfd_get_section_alignment (stdoutput, segment);
1229 return ((size + (1 << align) - 1) & (-1 << align));
1230}
1231
1232symbolS *
1233md_undefined_symbol (name)
78a0c6fb 1234 char *name ATTRIBUTE_UNUSED;
252b5132
RH
1235{
1236 return 0;
1237}
1238\f
1239/* .scomm pseudo-op handler.
1240
1241 This is a new pseudo-op to handle putting objects in .scommon.
ab3e48dc
KH
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. */
252b5132
RH
1245
1246static void
1247m32r_scomm (ignore)
78a0c6fb 1248 int ignore ATTRIBUTE_UNUSED;
252b5132 1249{
ab3e48dc
KH
1250 register char *name;
1251 register char c;
1252 register char *p;
1253 offsetT size;
1254 register symbolS *symbolP;
1255 offsetT align;
1256 int align2;
252b5132
RH
1257
1258 name = input_line_pointer;
1259 c = get_symbol_end ();
1260
ab3e48dc 1261 /* Just after name is now '\0'. */
252b5132 1262 p = input_line_pointer;
ab3e48dc 1263 *p = c;
252b5132 1264 SKIP_WHITESPACE ();
ab3e48dc 1265 if (*input_line_pointer != ',')
252b5132
RH
1266 {
1267 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1268 ignore_rest_of_line ();
1269 return;
1270 }
1271
ab3e48dc
KH
1272 /* Skip ','. */
1273 input_line_pointer++;
252b5132
RH
1274 if ((size = get_absolute_expression ()) < 0)
1275 {
ab3e48dc 1276 /* xgettext:c-format */
252b5132
RH
1277 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size);
1278 ignore_rest_of_line ();
1279 return;
1280 }
1281
1282 /* The third argument to .scomm is the alignment. */
ab3e48dc 1283 if (*input_line_pointer != ',')
252b5132
RH
1284 align = 8;
1285 else
1286 {
ab3e48dc 1287 ++input_line_pointer;
252b5132
RH
1288 align = get_absolute_expression ();
1289 if (align <= 0)
1290 {
1291 as_warn (_("ignoring bad alignment"));
1292 align = 8;
1293 }
1294 }
ab3e48dc 1295
252b5132
RH
1296 /* Convert to a power of 2 alignment. */
1297 if (align)
1298 {
ab3e48dc 1299 for (align2 = 0; (align & 1) == 0; align >>= 1, ++align2)
252b5132
RH
1300 continue;
1301 if (align != 1)
1302 {
1303 as_bad (_("Common alignment not a power of 2"));
1304 ignore_rest_of_line ();
1305 return;
1306 }
1307 }
1308 else
1309 align2 = 0;
1310
ab3e48dc 1311 *p = 0;
252b5132 1312 symbolP = symbol_find_or_make (name);
ab3e48dc 1313 *p = c;
252b5132
RH
1314
1315 if (S_IS_DEFINED (symbolP))
1316 {
ab3e48dc 1317 /* xgettext:c-format */
252b5132
RH
1318 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1319 S_GET_NAME (symbolP));
1320 ignore_rest_of_line ();
1321 return;
1322 }
1323
1324 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1325 {
ab3e48dc 1326 /* xgettext:c-format */
252b5132
RH
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),
1330 (long) size);
1331
1332 ignore_rest_of_line ();
1333 return;
1334 }
1335
f412ead8 1336 if (symbol_get_obj (symbolP)->local)
252b5132 1337 {
ab3e48dc
KH
1338 segT old_sec = now_seg;
1339 int old_subsec = now_subseg;
1340 char *pfrag;
252b5132
RH
1341
1342 record_alignment (sbss_section, align2);
1343 subseg_set (sbss_section, 0);
ab3e48dc 1344
252b5132
RH
1345 if (align2)
1346 frag_align (align2, 0, 0);
ab3e48dc 1347
252b5132 1348 if (S_GET_SEGMENT (symbolP) == sbss_section)
f412ead8 1349 symbol_get_frag (symbolP)->fr_symbol = 0;
ab3e48dc 1350
f412ead8 1351 symbol_set_frag (symbolP, frag_now);
ab3e48dc 1352
252b5132
RH
1353 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1354 (char *) 0);
ab3e48dc 1355 *pfrag = 0;
252b5132
RH
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);
1360 }
1361 else
1362 {
1363 S_SET_VALUE (symbolP, (valueT) size);
1364 S_SET_ALIGN (symbolP, align2);
1365 S_SET_EXTERNAL (symbolP);
ab3e48dc 1366 S_SET_SEGMENT (symbolP, &scom_section);
252b5132
RH
1367 }
1368
1369 demand_empty_rest_of_line ();
1370}
1371\f
1372/* Interface to relax_segment. */
1373
1374/* FIXME: Build table by hand, get it working, then machine generate. */
1375
1376const relax_typeS md_relax_table[] =
1377{
1378/* The fields are:
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. */
1383
1384 /* The first entry must be unused because an `rlx_more' value of zero ends
1385 each list. */
1386 {1, 1, 0, 0},
1387
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
1394 case). */
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 }
1400};
1401
1402long
c842b53a
ILT
1403m32r_relax_frag (segment, fragP, stretch)
1404 segT segment;
ab3e48dc
KH
1405 fragS *fragP;
1406 long stretch;
252b5132
RH
1407{
1408 /* Address of branch insn. */
1409 long address = fragP->fr_address + fragP->fr_fix - 2;
1410 long growth = 0;
1411
1412 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1413 if (fragP->fr_subtype == 2)
1414 {
1415 if ((address & 3) != 0)
1416 {
1417 fragP->fr_subtype = 3;
1418 growth = 2;
1419 }
1420 }
1421 else if (fragP->fr_subtype == 3)
1422 {
1423 if ((address & 3) == 0)
1424 {
1425 fragP->fr_subtype = 2;
1426 growth = -2;
1427 }
1428 }
1429 else
1430 {
c842b53a 1431 growth = relax_frag (segment, fragP, stretch);
252b5132
RH
1432
1433 /* Long jump on odd halfword boundary? */
1434 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1435 {
1436 fragP->fr_subtype = 3;
1437 growth += 2;
1438 }
1439 }
1440
1441 return growth;
1442}
1443
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.
1447
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.
ab3e48dc
KH
1452 Although it may not be explicit in the frag, pretend fr_var starts
1453 with a 0 value. */
252b5132
RH
1454
1455int
1456md_estimate_size_before_relax (fragP, segment)
ab3e48dc
KH
1457 fragS *fragP;
1458 segT segment;
252b5132 1459{
252b5132
RH
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. */
1465
1466 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
1467 {
78a0c6fb 1468#if 0
606ab118 1469 int old_fr_fix = fragP->fr_fix;
78a0c6fb 1470#endif
606ab118 1471
252b5132
RH
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;
1476
ab3e48dc
KH
1477#if 0
1478 /* Can't use this, but leave in for illustration. */
252b5132
RH
1479 /* Change 16 bit insn to 32 bit insn. */
1480 fragP->fr_opcode[0] |= 0x80;
1481
1482 /* Increase known (fixed) size of fragment. */
1483 fragP->fr_fix += 2;
1484
1485 /* Create a relocation for it. */
1486 fix_new (fragP, old_fr_fix, 4,
1487 fragP->fr_symbol,
ab3e48dc 1488 fragP->fr_offset, 1 /* pcrel */,
252b5132
RH
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);
1492
1493 /* Mark this fragment as finished. */
1494 frag_wane (fragP);
606ab118 1495 return fragP->fr_fix - old_fr_fix;
252b5132
RH
1496#else
1497 {
ab3e48dc
KH
1498 const CGEN_INSN *insn;
1499 int i;
252b5132
RH
1500
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++)
1506 {
1507 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1508 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
1509 == 0)
b11dcf4e 1510 && CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAXED))
252b5132
RH
1511 break;
1512 }
1513 if (i == 4)
1514 abort ();
1515
1516 fragP->fr_cgen.insn = insn;
1517 return 2;
1518 }
1519#endif
1520 }
1521
606ab118 1522 return md_relax_table[fragP->fr_subtype].rlx_length;
ab3e48dc 1523}
252b5132 1524
ab3e48dc 1525/* *FRAGP has been relaxed to its final size, and now needs to have
252b5132
RH
1526 the bytes inside it modified to conform to the new size.
1527
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. */
1531
1532void
1533md_convert_frag (abfd, sec, fragP)
78a0c6fb 1534 bfd *abfd ATTRIBUTE_UNUSED;
ab3e48dc
KH
1535 segT sec;
1536 fragS *fragP;
252b5132 1537{
ab3e48dc
KH
1538 char *opcode;
1539 char *displacement;
1540 int target_address;
1541 int opcode_address;
1542 int extension;
1543 int addend;
252b5132
RH
1544
1545 opcode = fragP->fr_opcode;
1546
1547 /* Address opcode resides at in file space. */
1548 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1549
1550 switch (fragP->fr_subtype)
1551 {
ab3e48dc 1552 case 1:
252b5132 1553 extension = 0;
ab3e48dc 1554 displacement = &opcode[1];
252b5132 1555 break;
ab3e48dc 1556 case 2:
252b5132
RH
1557 opcode[0] |= 0x80;
1558 extension = 2;
ab3e48dc 1559 displacement = &opcode[1];
252b5132 1560 break;
ab3e48dc 1561 case 3:
252b5132
RH
1562 opcode[2] = opcode[0] | 0x80;
1563 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1564 opcode_address += 2;
1565 extension = 4;
ab3e48dc 1566 displacement = &opcode[3];
252b5132 1567 break;
ab3e48dc 1568 default:
252b5132
RH
1569 abort ();
1570 }
1571
1572 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1573 {
ab3e48dc 1574 /* Symbol must be resolved by linker. */
252b5132
RH
1575 if (fragP->fr_offset & 3)
1576 as_warn (_("Addend to unresolved symbol not on word boundary."));
1577 addend = fragP->fr_offset >> 2;
1578 }
1579 else
1580 {
1581 /* Address we want to reach in file space. */
1582 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132
RH
1583 addend = (target_address - (opcode_address & -4)) >> 2;
1584 }
1585
1586 /* Create a relocation for symbols that must be resolved by the linker.
1587 Otherwise output the completed insn. */
1588
1589 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1590 {
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,
ab3e48dc
KH
1597 4 /* Length. */,
1598 /* FIXME: quick hack. */
252b5132
RH
1599#if 0
1600 cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
1601 fragP->fr_cgen.opindex),
1602#else
1603 cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
1604 M32R_OPERAND_DISP24),
1605#endif
1606 fragP->fr_cgen.opinfo,
1607 fragP->fr_symbol, fragP->fr_offset);
1608 }
1609
1610#define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1611
1612 md_number_to_chars (displacement, (valueT) addend,
1613 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1614
1615 fragP->fr_fix += extension;
1616}
1617\f
1618/* Functions concerning relocs. */
1619
1620/* The location from which a PC relative jump should be calculated,
1621 given a PC relative reloc. */
1622
1623long
1624md_pcrel_from_section (fixP, sec)
ab3e48dc
KH
1625 fixS *fixP;
1626 segT sec;
252b5132
RH
1627{
1628 if (fixP->fx_addsy != (symbolS *) NULL
1629 && (! S_IS_DEFINED (fixP->fx_addsy)
1630 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
1631 {
1632 /* The symbol is undefined (or is defined but not in this section).
1633 Let the linker figure it out. */
1634 return 0;
1635 }
1636
1637 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1638}
1639
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. */
1643
1644bfd_reloc_code_real_type
1645md_cgen_lookup_reloc (insn, operand, fixP)
78a0c6fb 1646 const CGEN_INSN *insn ATTRIBUTE_UNUSED;
ab3e48dc
KH
1647 const CGEN_OPERAND *operand;
1648 fixS *fixP;
252b5132
RH
1649{
1650 switch (operand->type)
1651 {
ab3e48dc
KH
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:
252b5132
RH
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;
1662 break;
ab3e48dc
KH
1663 default:
1664 /* Avoid -Wall warning. */
252b5132
RH
1665 break;
1666 }
1667 return BFD_RELOC_NONE;
1668}
1669
1670/* Record a HI16 reloc for later matching with its LO16 cousin. */
1671
78a0c6fb
AM
1672static void m32r_record_hi16 PARAMS ((int, fixS *, segT));
1673
252b5132
RH
1674static void
1675m32r_record_hi16 (reloc_type, fixP, seg)
ab3e48dc
KH
1676 int reloc_type;
1677 fixS *fixP;
78a0c6fb 1678 segT seg ATTRIBUTE_UNUSED;
252b5132 1679{
ab3e48dc 1680 struct m32r_hi_fixup *hi_fixup;
252b5132
RH
1681
1682 assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1683 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1684
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;
ab3e48dc 1690
252b5132
RH
1691 m32r_hi_fixup_list = hi_fixup;
1692}
1693
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. */
1696
1697fixS *
1698m32r_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
ab3e48dc
KH
1699 fragS *frag;
1700 int where;
1701 const CGEN_INSN *insn;
1702 int length;
1703 const CGEN_OPERAND *operand;
1704 int opinfo;
1705 expressionS *exp;
252b5132 1706{
ab3e48dc
KH
1707 fixS *fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
1708 operand, opinfo, exp);
252b5132
RH
1709
1710 switch (operand->type)
1711 {
ab3e48dc 1712 case M32R_OPERAND_HI16:
252b5132
RH
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);
1717 break;
ab3e48dc
KH
1718 default:
1719 /* Avoid -Wall warning */
252b5132
RH
1720 break;
1721 }
1722
1723 return fixP;
1724}
1725
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)
1730
1731/* Sort any unmatched HI16 relocs so that they immediately precede
94f592af 1732 the corresponding LO16 reloc. This is called before md_apply_fix3 and
252b5132
RH
1733 tc_gen_reloc. */
1734
1735void
1736m32r_frob_file ()
1737{
ab3e48dc 1738 struct m32r_hi_fixup *l;
252b5132
RH
1739
1740 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
1741 {
ab3e48dc
KH
1742 segment_info_type *seginfo;
1743 int pass;
252b5132
RH
1744
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);
1747
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)
1753 continue;
1754
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++)
1762 {
ab3e48dc
KH
1763 fixS *f;
1764 fixS *prev;
252b5132
RH
1765
1766 prev = NULL;
1767 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
1768 {
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
1773 && (pass == 1
1774 || prev == NULL
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
ab3e48dc 1778 || prev->fx_offset != f->fx_offset))
252b5132 1779 {
ab3e48dc 1780 fixS **pf;
252b5132
RH
1781
1782 /* Move l->fixp before f. */
1783 for (pf = &seginfo->fix_root;
ab3e48dc
KH
1784 *pf != l->fixp;
1785 pf = & (*pf)->fx_next)
1786 assert (*pf != NULL);
252b5132 1787
ab3e48dc 1788 *pf = l->fixp->fx_next;
252b5132
RH
1789
1790 l->fixp->fx_next = f;
1791 if (prev == NULL)
1792 seginfo->fix_root = l->fixp;
1793 else
1794 prev->fx_next = l->fixp;
1795
1796 break;
1797 }
1798
1799 prev = f;
1800 }
1801
1802 if (f != NULL)
1803 break;
1804
1805 if (pass == 1
1806 && warn_unmatched_high)
1807 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
1808 _("Unmatched high/shigh reloc"));
1809 }
1810 }
1811}
1812
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
1815 relaxing. */
1816
1817int
1818m32r_force_relocation (fix)
ab3e48dc 1819 fixS *fix;
252b5132 1820{
ae6063d4 1821 if (generic_force_reloc (fix))
252b5132
RH
1822 return 1;
1823
1824 if (! m32r_relax)
1825 return 0;
1826
ab3e48dc 1827 return fix->fx_pcrel;
252b5132
RH
1828}
1829\f
1830/* Write a value out to the object file, using the appropriate endianness. */
1831
1832void
1833md_number_to_chars (buf, val, n)
ab3e48dc 1834 char *buf;
252b5132 1835 valueT val;
ab3e48dc 1836 int n;
252b5132
RH
1837{
1838 if (target_big_endian)
1839 number_to_chars_bigendian (buf, val, n);
1840 else
1841 number_to_chars_littleendian (buf, val, n);
1842}
1843
ab3e48dc
KH
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. */
252b5132 1848
ab3e48dc 1849/* Equal to MAX_PRECISION in atof-ieee.c. */
252b5132
RH
1850#define MAX_LITTLENUMS 6
1851
1852char *
1853md_atof (type, litP, sizeP)
1854 char type;
1855 char *litP;
1856 int *sizeP;
1857{
ab3e48dc
KH
1858 int i;
1859 int prec;
1860 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1861 char *t;
252b5132
RH
1862
1863 switch (type)
1864 {
1865 case 'f':
1866 case 'F':
1867 case 's':
1868 case 'S':
1869 prec = 2;
1870 break;
1871
1872 case 'd':
1873 case 'D':
1874 case 'r':
1875 case 'R':
1876 prec = 4;
1877 break;
1878
ab3e48dc
KH
1879 /* FIXME: Some targets allow other format chars for bigger sizes
1880 here. */
252b5132
RH
1881
1882 default:
ab3e48dc 1883 *sizeP = 0;
252b5132
RH
1884 return _("Bad call to md_atof()");
1885 }
1886
1887 t = atof_ieee (input_line_pointer, type, words);
1888 if (t)
1889 input_line_pointer = t;
ab3e48dc 1890 *sizeP = prec * sizeof (LITTLENUM_TYPE);
252b5132
RH
1891
1892 if (target_big_endian)
1893 {
1894 for (i = 0; i < prec; i++)
1895 {
1896 md_number_to_chars (litP, (valueT) words[i],
1897 sizeof (LITTLENUM_TYPE));
1898 litP += sizeof (LITTLENUM_TYPE);
1899 }
1900 }
1901 else
1902 {
1903 for (i = prec - 1; i >= 0; i--)
1904 {
1905 md_number_to_chars (litP, (valueT) words[i],
1906 sizeof (LITTLENUM_TYPE));
1907 litP += sizeof (LITTLENUM_TYPE);
1908 }
1909 }
ab3e48dc 1910
252b5132
RH
1911 return 0;
1912}
1913
1914void
1915m32r_elf_section_change_hook ()
1916{
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. */
ab3e48dc 1920
252b5132
RH
1921 if (prev_insn.insn || seen_relaxable_p)
1922 (void) m32r_fill_insn (0);
1923}
1924
60bcf0fa 1925/* Return true if can adjust the reloc to be relative to its section
ab3e48dc 1926 (such as .data) instead of relative to some symbol. */
60bcf0fa 1927
b34976b6 1928bfd_boolean
252b5132
RH
1929m32r_fix_adjustable (fixP)
1930 fixS *fixP;
1931{
5c86cbc7 1932 bfd_reloc_code_real_type reloc_type;
ab3e48dc 1933
5c86cbc7
CM
1934 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
1935 {
1936 const CGEN_INSN *insn = NULL;
1937 int opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
ab3e48dc
KH
1938 const CGEN_OPERAND *operand =
1939 cgen_operand_lookup_by_num(gas_cgen_cpu_desc, opindex);
5c86cbc7
CM
1940 reloc_type = md_cgen_lookup_reloc (insn, operand, fixP);
1941 }
1942 else
1943 reloc_type = fixP->fx_r_type;
1944
ab3e48dc 1945 /* We need the symbol name for the VTABLE entries. */
5c86cbc7
CM
1946 if (reloc_type == BFD_RELOC_VTABLE_INHERIT
1947 || reloc_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
1948 return 0;
1949
1950 return 1;
1951}