Fix typo.
[deliverable/binutils-gdb.git] / gas / config / tc-m32r.c
CommitLineData
76090fdd 1/* tc-m32r.c -- Assembler for the Mitsubishi M32R.
9121b102 2 Copyright (C) 1996, 1997, 1998 Free Software Foundation.
c8cf7e17
DE
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 2, 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, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include <stdio.h>
22#include <ctype.h>
23#include "as.h"
24#include "subsegs.h"
a15a45e5 25#include "symcat.h"
c8cf7e17 26#include "cgen-opc.h"
defc70bf 27#include "cgen.h"
c8cf7e17 28
defc70bf
DE
29/* Linked list of symbols that are debugging symbols to be defined as the
30 beginning of the current instruction. */
31typedef struct sym_link
32{
33 struct sym_link *next;
34 symbolS *symbol;
35} sym_linkS;
36
37static sym_linkS *debug_sym_link = (sym_linkS *)0;
38
ca6a899d
NC
39/* Structure to hold all of the different components describing
40 an individual instruction. */
b6930bdf
NC
41typedef struct
42{
43 const CGEN_INSN * insn;
a15a45e5 44 const CGEN_INSN * orig_insn;
b6930bdf
NC
45 CGEN_FIELDS fields;
46#ifdef CGEN_INT_INSN
47 cgen_insn_t buffer [CGEN_MAX_INSN_SIZE / sizeof (cgen_insn_t)];
48#else
49 char buffer [CGEN_MAX_INSN_SIZE];
50#endif
51 char * addr;
52 fragS * frag;
defc70bf 53 int num_fixups;
e8dedcb3 54 fixS * fixups [GAS_CGEN_MAX_FIXUPS];
6cf2575a 55 int indices [MAX_OPERAND_INSTANCES];
defc70bf 56 sym_linkS *debug_sym_link;
b6930bdf
NC
57}
58m32r_insn;
59
60/* prev_insn.insn is non-null if last insn was a 16 bit insn on a 32 bit
61 boundary (i.e. was the first of two 16 bit insns). */
62static m32r_insn prev_insn;
c8cf7e17
DE
63
64/* Non-zero if we've seen a relaxable insn since the last 32 bit
65 alignment request. */
66static int seen_relaxable_p = 0;
67
68/* Non-zero if -relax specified, in which case sufficient relocs are output
69 for the linker to do relaxing.
70 We do simple forms of relaxing internally, but they are always done.
71 This flag does not apply to them. */
72static int m32r_relax;
73
e8dedcb3 74#if 0 /* not supported yet */
c8cf7e17
DE
75/* If non-NULL, pointer to cpu description file to read.
76 This allows runtime additions to the assembler. */
e8dedcb3
NC
77static const char * m32r_cpu_desc;
78#endif
c8cf7e17 79
7c629878
DE
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). */
89static int warn_unmatched_high = 0;
90
b5e9e562 91/* start-sanitize-m32rx */
e8dedcb3 92/* Non-zero if -m32rx has been specified, in which case support for the
a450e9f4 93 extended M32RX instruction set should be enabled. */
a450e9f4 94static int enable_m32rx = 0;
b6930bdf 95
e8dedcb3 96/* Non-zero if -m32rx -hidden has been specified, in which case support for
32c2be76
NC
97 the special M32RX instruction set should be enabled. */
98static int enable_special = 0;
99
b6930bdf
NC
100/* Non-zero if the programmer should be warned when an explicit parallel
101 instruction might have constraint violations. */
102static int warn_explicit_parallel_conflicts = 1;
48401fcf 103
48401fcf
TT
104/* Non-zero if insns can be made parallel. */
105static int optimize;
b5e9e562 106/* end-sanitize-m32rx */
a450e9f4 107
c8cf7e17 108/* stuff for .scomm symbols. */
ebde3f62 109static segT sbss_section;
c8cf7e17 110static asection scom_section;
ebde3f62 111static asymbol scom_symbol;
c8cf7e17 112
ebde3f62
NC
113const char comment_chars[] = ";";
114const char line_comment_chars[] = "#";
c8cf7e17 115const char line_separator_chars[] = "";
ebde3f62
NC
116const char EXP_CHARS[] = "eE";
117const char FLT_CHARS[] = "dD";
c8cf7e17
DE
118
119/* Relocations against symbols are done in two
120 parts, with a HI relocation and a LO relocation. Each relocation
121 has only 16 bits of space to store an addend. This means that in
122 order for the linker to handle carries correctly, it must be able
123 to locate both the HI and the LO relocation. This means that the
124 relocations must appear in order in the relocation table.
125
126 In order to implement this, we keep track of each unmatched HI
127 relocation. We then sort them so that they immediately precede the
128 corresponding LO relocation. */
129
130struct m32r_hi_fixup
131{
ebde3f62
NC
132 struct m32r_hi_fixup * next; /* Next HI fixup. */
133 fixS * fixp; /* This fixup. */
134 segT seg; /* The section this fixup is in. */
135
c8cf7e17
DE
136};
137
138/* The list of unmatched HI relocs. */
139
ebde3f62 140static struct m32r_hi_fixup * m32r_hi_fixup_list;
c8cf7e17 141
a450e9f4 142\f
b5e9e562 143/* start-sanitize-m32rx */
a450e9f4 144static void
55a4759f
DE
145allow_m32rx (on)
146 int on;
a450e9f4
NC
147{
148 enable_m32rx = on;
149
150 if (stdoutput != NULL)
ebde3f62
NC
151 bfd_set_arch_mach (stdoutput, TARGET_ARCH,
152 enable_m32rx ? bfd_mach_m32rx : bfd_mach_m32r);
a450e9f4 153}
b5e9e562 154/* end-sanitize-m32rx */
c8cf7e17 155\f
48401fcf 156#define M32R_SHORTOPTS ""
defc70bf 157/* start-sanitize-m32rx */
48401fcf
TT
158#undef M32R_SHORTOPTS
159#define M32R_SHORTOPTS "O"
defc70bf 160/* end-sanitize-m32rx */
48401fcf 161const char * md_shortopts = M32R_SHORTOPTS;
c8cf7e17 162
a450e9f4
NC
163struct option md_longopts[] =
164{
b5e9e562 165/* start-sanitize-m32rx */
a450e9f4
NC
166#define OPTION_M32RX (OPTION_MD_BASE)
167 {"m32rx", no_argument, NULL, OPTION_M32RX},
7c629878
DE
168#define OPTION_WARN_PARALLEL (OPTION_MD_BASE + 1)
169 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN_PARALLEL},
170 {"Wp", no_argument, NULL, OPTION_WARN_PARALLEL},
171#define OPTION_NO_WARN_PARALLEL (OPTION_MD_BASE + 2)
172 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
173 {"Wnp", no_argument, NULL, OPTION_NO_WARN_PARALLEL},
32c2be76 174#define OPTION_SPECIAL (OPTION_MD_BASE + 3)
98c5cd5a 175 {"hidden", no_argument, NULL, OPTION_SPECIAL},
b5e9e562 176/* end-sanitize-m32rx */
a450e9f4 177
7c629878
DE
178 /* Sigh. I guess all warnings must now have both variants. */
179#define OPTION_WARN_UNMATCHED (OPTION_MD_BASE + 4)
180 {"warn-unmatched-high", OPTION_WARN_UNMATCHED},
181 {"Wuh", OPTION_WARN_UNMATCHED},
182#define OPTION_NO_WARN_UNMATCHED (OPTION_MD_BASE + 5)
183 {"no-warn-unmatched-high", OPTION_WARN_UNMATCHED},
184 {"Wnuh", OPTION_WARN_UNMATCHED},
185
c8cf7e17 186#if 0 /* not supported yet */
7c629878 187#define OPTION_RELAX (OPTION_MD_BASE + 6)
c8cf7e17 188 {"relax", no_argument, NULL, OPTION_RELAX},
7c629878 189#define OPTION_CPU_DESC (OPTION_MD_BASE + 7)
c8cf7e17
DE
190 {"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
191#endif
a450e9f4 192
c8cf7e17
DE
193 {NULL, no_argument, NULL, 0}
194};
ebde3f62 195size_t md_longopts_size = sizeof (md_longopts);
c8cf7e17
DE
196
197int
198md_parse_option (c, arg)
ebde3f62
NC
199 int c;
200 char * arg;
c8cf7e17
DE
201{
202 switch (c)
203 {
b5e9e562 204/* start-sanitize-m32rx */
48401fcf
TT
205 case 'O':
206 optimize = 1;
207 break;
48401fcf 208
a450e9f4
NC
209 case OPTION_M32RX:
210 allow_m32rx (1);
211 break;
b6930bdf 212
7c629878 213 case OPTION_WARN_PARALLEL:
b6930bdf
NC
214 warn_explicit_parallel_conflicts = 1;
215 break;
216
7c629878 217 case OPTION_NO_WARN_PARALLEL:
b6930bdf
NC
218 warn_explicit_parallel_conflicts = 0;
219 break;
7c629878 220
32c2be76 221 case OPTION_SPECIAL:
98c5cd5a
NC
222 if (enable_m32rx)
223 enable_special = 1;
224 else
225 {
226 extern char * myname;
227
228 /* Pretend that we do not recognise this option. */
e8dedcb3 229 fprintf (stderr, _("%s: unrecognised option: -hidden\n"), myname);
98c5cd5a
NC
230 return 0;
231 }
32c2be76 232 break;
b5e9e562 233/* end-sanitize-m32rx */
7c629878
DE
234
235 case OPTION_WARN_UNMATCHED:
236 warn_unmatched_high = 1;
237 break;
238
239 case OPTION_NO_WARN_UNMATCHED:
240 warn_unmatched_high = 0;
241 break;
a450e9f4 242
c8cf7e17
DE
243#if 0 /* not supported yet */
244 case OPTION_RELAX:
245 m32r_relax = 1;
246 break;
247 case OPTION_CPU_DESC:
248 m32r_cpu_desc = arg;
249 break;
250#endif
7c629878 251
c8cf7e17
DE
252 default:
253 return 0;
254 }
255 return 1;
256}
257
258void
259md_show_usage (stream)
ebde3f62 260 FILE * stream;
c8cf7e17 261{
e8dedcb3 262 fprintf (stream, _(" M32R specific command line options:\n"));
7c629878 263
b5e9e562 264/* start-sanitize-m32rx */
48401fcf 265 fprintf (stream, _("\
e8dedcb3 266 -m32rx support the extended m32rx instruction set\n"));
32c2be76 267 fprintf (stream, _("\
e8dedcb3 268 -O try to combine instructions in parallel\n"));
48401fcf
TT
269
270 fprintf (stream, _("\
e8dedcb3
NC
271 -warn-explicit-parallel-conflicts warn when parallel instructions\n"));
272 fprintf (stream, _("\
273 violate contraints\n"));
274 fprintf (stream, _("\
275 -no-warn-explicit-parallel-conflicts do not warn when parallel\n"));
48401fcf 276 fprintf (stream, _("\
e8dedcb3 277 instructions violate contraints\n"));
48401fcf 278 fprintf (stream, _("\
e8dedcb3 279 -Wp synonym for -warn-explicit-parallel-conflicts\n"));
48401fcf 280 fprintf (stream, _("\
e8dedcb3 281 -Wnp synonym for -no-warn-explicit-parallel-conflicts\n"));
b5e9e562 282/* end-sanitize-m32rx */
a450e9f4 283
7c629878 284 fprintf (stream, _("\
e8dedcb3 285 -warn-unmatched-high warn when an (s)high reloc has no matching low reloc\n"));
7c629878 286 fprintf (stream, _("\
e8dedcb3 287 -no-warn-unmatched-high do not warn about missing low relocs\n"));
7c629878 288 fprintf (stream, _("\
e8dedcb3 289 -Wuh synonym for -warn-unmatched-high\n"));
7c629878 290 fprintf (stream, _("\
e8dedcb3 291 -Wnuh synonym for -no-warn-unmatched-high\n"));
7c629878 292
c8cf7e17 293#if 0
48401fcf 294 fprintf (stream, _("\
e8dedcb3 295 -relax create linker relaxable code\n"));
48401fcf 296 fprintf (stream, _("\
e8dedcb3 297 -cpu-desc provide runtime cpu description file\n"));
c8cf7e17
DE
298#endif
299}
300
301static void fill_insn PARAMS ((int));
302static void m32r_scomm PARAMS ((int));
defc70bf
DE
303static void debug_sym PARAMS ((int));
304static void expand_debug_syms PARAMS ((sym_linkS *, int));
c8cf7e17
DE
305
306/* Set by md_assemble for use by m32r_fill_insn. */
307static subsegT prev_subseg;
308static segT prev_seg;
309
310/* The target specific pseudo-ops which we support. */
311const pseudo_typeS md_pseudo_table[] =
312{
defc70bf
DE
313 { "word", cons, 4 },
314 { "fillinsn", fill_insn, 0 },
315 { "scomm", m32r_scomm, 0 },
316 { "debugsym", debug_sym, 0 },
b5e9e562 317/* start-sanitize-m32rx */
e8dedcb3 318 /* Not documented as so far there is no need for them.... */
defc70bf
DE
319 { "m32r", allow_m32rx, 0 },
320 { "m32rx", allow_m32rx, 1 },
b5e9e562 321/* end-sanitize-m32rx */
c8cf7e17
DE
322 { NULL, NULL, 0 }
323};
324
325/* FIXME: Should be machine generated. */
326#define NOP_INSN 0x7000
327#define PAR_NOP_INSN 0xf000 /* can only be used in 2nd slot */
328
329/* When we align the .text section, insert the correct NOP pattern.
330 N is the power of 2 alignment. LEN is the length of pattern FILL.
331 MAX is the maximum number of characters to skip when doing the alignment,
332 or 0 if there is no maximum. */
333
334int
335m32r_do_align (n, fill, len, max)
ebde3f62
NC
336 int n;
337 const char * fill;
338 int len;
339 int max;
c8cf7e17 340{
99bf7e37
NC
341 /* Only do this if the fill pattern wasn't specified. */
342 if (fill == NULL
c8cf7e17
DE
343 && (now_seg->flags & SEC_CODE) != 0
344 /* Only do this special handling if aligning to at least a
345 4 byte boundary. */
346 && n > 1
775fdd0c 347 /* Only do this special handling if we're allowed to emit at
c8cf7e17
DE
348 least two bytes. */
349 && (max == 0 || max > 1))
350 {
351 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
352
353#if 0
354 /* First align to a 2 byte boundary, in case there is an odd .byte. */
355 /* FIXME: How much memory will cause gas to use when assembling a big
356 program? Perhaps we can avoid the frag_align call? */
357 frag_align (1, 0, 0);
358#endif
359 /* Next align to a 4 byte boundary (we know n >= 2) using a parallel
360 nop. */
361 frag_align_pattern (2, nop_pattern, sizeof nop_pattern, 0);
362 /* If doing larger alignments use a repeating sequence of appropriate
363 nops. */
364 if (n > 2)
365 {
ebde3f62
NC
366 static const unsigned char multi_nop_pattern[] =
367 { 0x70, 0x00, 0xf0, 0x00 };
c8cf7e17
DE
368 frag_align_pattern (n, multi_nop_pattern, sizeof multi_nop_pattern,
369 max ? max - 2 : 0);
370 }
e8dedcb3
NC
371
372 prev_insn.insn = NULL;
c8cf7e17
DE
373 return 1;
374 }
375
376 return 0;
377}
378
c8cf7e17
DE
379/* If the last instruction was the first of 2 16 bit insns,
380 output a nop to move the PC to a 32 bit boundary.
381
382 This is done via an alignment specification since branch relaxing
383 may make it unnecessary.
384
385 Internally, we need to output one of these each time a 32 bit insn is
386 seen after an insn that is relaxable. */
387
388static void
389fill_insn (ignore)
390 int ignore;
391{
392 (void) m32r_do_align (2, NULL, 0, 0);
b6930bdf 393 prev_insn.insn = NULL;
c8cf7e17
DE
394 seen_relaxable_p = 0;
395}
396
defc70bf
DE
397/* Record the symbol so that when we output the insn, we can create
398 a symbol that is at the start of the instruction. This is used
399 to emit the label for the start of a breakpoint without causing
400 the assembler to emit a NOP if the previous instruction was a
401 16 bit instruction. */
402
403static void
404debug_sym (ignore)
405 int ignore;
406{
407 register char *name;
408 register char delim;
409 register char *end_name;
410 register symbolS *symbolP;
411 register sym_linkS *link;
412
413 name = input_line_pointer;
414 delim = get_symbol_end ();
415 end_name = input_line_pointer;
416
417 if ((symbolP = symbol_find (name)) == NULL
418 && (symbolP = md_undefined_symbol (name)) == NULL)
419 {
420 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
421 }
422
423 symbol_table_insert (symbolP);
424 if (S_IS_DEFINED (symbolP) && S_GET_SEGMENT (symbolP) != reg_section)
ca6a899d 425 /* xgettext:c-format */
defc70bf
DE
426 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
427
428 else
429 {
430 link = (sym_linkS *) xmalloc (sizeof (sym_linkS));
431 link->symbol = symbolP;
432 link->next = debug_sym_link;
433 debug_sym_link = link;
434 symbolP->local = 1;
435 }
436
437 *end_name = delim;
438 demand_empty_rest_of_line ();
439}
440
441/* Second pass to expanding the debug symbols, go through linked
442 list of symbols and reassign the address. */
443
444static void
445expand_debug_syms (syms, align)
446 sym_linkS *syms;
447 int align;
448{
449 char *save_input_line = input_line_pointer;
450 sym_linkS *next_syms;
defc70bf
DE
451
452 if (!syms)
453 return;
454
455 (void) m32r_do_align (align, NULL, 0, 0);
456 for (; syms != (sym_linkS *)0; syms = next_syms)
457 {
458 symbolS *symbolP = syms->symbol;
459 next_syms = syms->next;
460 input_line_pointer = ".\n";
461 pseudo_set (symbolP);
462 free ((char *)syms);
463 }
464
465 input_line_pointer = save_input_line;
466}
467
c8cf7e17 468/* Cover function to fill_insn called after a label and at end of assembly.
c8cf7e17
DE
469 The result is always 1: we're called in a conditional to see if the
470 current line is a label. */
471
472int
473m32r_fill_insn (done)
474 int done;
475{
c8cf7e17
DE
476 if (prev_seg != NULL)
477 {
48401fcf
TT
478 segT seg = now_seg;
479 subsegT subseg = now_subseg;
480
c8cf7e17 481 subseg_set (prev_seg, prev_subseg);
ebde3f62 482
c8cf7e17 483 fill_insn (0);
99bf7e37 484
c8cf7e17
DE
485 subseg_set (seg, subseg);
486 }
99bf7e37
NC
487
488 if (done && debug_sym_link)
489 {
490 expand_debug_syms (debug_sym_link, 1);
491 debug_sym_link = (sym_linkS *)0;
492 }
493
c8cf7e17
DE
494 return 1;
495}
496\f
497void
498md_begin ()
499{
500 flagword applicable;
ebde3f62
NC
501 segT seg;
502 subsegT subseg;
c8cf7e17
DE
503
504 /* Initialize the `cgen' interface. */
ebde3f62 505
4e9d8dea 506 /* Set the machine number and endian. */
e8dedcb3
NC
507 gas_cgen_opcode_desc = m32r_cgen_opcode_open (0 /* mach number */,
508 target_big_endian ?
509 CGEN_ENDIAN_BIG
510 : CGEN_ENDIAN_LITTLE);
511 m32r_cgen_init_asm (gas_cgen_opcode_desc);
512
513 /* This is a callback from cgen to gas to parse operands. */
514 cgen_set_parse_operand_fn (gas_cgen_opcode_desc, gas_cgen_parse_operand);
c8cf7e17
DE
515
516#if 0 /* not supported yet */
517 /* If a runtime cpu description file was provided, parse it. */
518 if (m32r_cpu_desc != NULL)
519 {
ebde3f62 520 const char * errmsg;
c8cf7e17 521
e8dedcb3 522 errmsg = cgen_read_cpu_file (gas_cgen_opcode_desc, m32r_cpu_desc);
c8cf7e17
DE
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
ebde3f62
NC
529 we don't want the initial section to be .sbss]. */
530 seg = now_seg;
c8cf7e17
DE
531 subseg = now_subseg;
532
533 /* The sbss section is for local .scomm symbols. */
534 sbss_section = subseg_new (".sbss", 0);
ebde3f62 535
c8cf7e17
DE
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);
ebde3f62 539
c8cf7e17
DE
540#if 0 /* What does this do? [see perform_an_assembly_pass] */
541 seg_info (bss_section)->bss = 1;
542#endif
543
544 subseg_set (seg, subseg);
545
546 /* We must construct a fake section similar to bfd_com_section
547 but with the name .scommon. */
ebde3f62
NC
548 scom_section = bfd_com_section;
549 scom_section.name = ".scommon";
550 scom_section.output_section = & scom_section;
551 scom_section.symbol = & scom_symbol;
552 scom_section.symbol_ptr_ptr = & scom_section.symbol;
553 scom_symbol = * bfd_com_section.symbol;
554 scom_symbol.name = ".scommon";
555 scom_symbol.section = & scom_section;
a450e9f4 556
b5e9e562 557/* start-sanitize-m32rx */
a450e9f4 558 allow_m32rx (enable_m32rx);
b5e9e562 559/* end-sanitize-m32rx */
c8cf7e17
DE
560}
561
89285fc9 562/* start-sanitize-m32rx */
55a4759f 563
a15a45e5
DE
564#define OPERAND_IS_COND_BIT(operand, indices, index) \
565 (CGEN_OPERAND_INSTANCE_HW (operand)->type == HW_H_COND \
566 || (CGEN_OPERAND_INSTANCE_HW (operand)->type == HW_H_CR \
567 && (indices [index] == 0 || indices [index] == 1)))
568
6cf2575a
NC
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. */
48401fcf 572
ebde3f62 573static int
6cf2575a 574first_writes_to_seconds_operands (a, b, check_outputs)
26192c50
NC
575 m32r_insn * a;
576 m32r_insn * b;
6cf2575a 577 const int check_outputs;
00aa5b17 578{
c9cec4ef 579 const CGEN_OPERAND_INSTANCE * a_operands = CGEN_INSN_OPERANDS (a->insn);
39149be2 580 const CGEN_OPERAND_INSTANCE * b_ops = CGEN_INSN_OPERANDS (b->insn);
6cf2575a 581 int a_index;
00aa5b17 582
0c22a4c1 583 /* If at least one of the instructions takes no operands, then there is
c9cec4ef
NC
584 nothing to check. There really are instructions without operands,
585 eg 'nop'. */
39149be2 586 if (a_operands == NULL || b_ops == NULL)
c9cec4ef
NC
587 return 0;
588
6cf2575a 589 /* Scan the operand list of 'a' looking for an output operand. */
c9cec4ef 590 for (a_index = 0;
6cf2575a
NC
591 CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END;
592 a_index ++, a_operands ++)
26192c50 593 {
6cf2575a 594 if (CGEN_OPERAND_INSTANCE_TYPE (a_operands) == CGEN_OPERAND_INSTANCE_OUTPUT)
26192c50 595 {
c9cec4ef 596 int b_index;
39149be2 597 const CGEN_OPERAND_INSTANCE * b_operands = b_ops;
a15a45e5
DE
598
599 /* Special Case:
600 The Condition bit 'C' is a shadow of the CBR register (control
601 register 1) and also a shadow of bit 31 of the program status
602 word (control register 0). For now this is handled here, rather
603 than by cgen.... */
604
605 if (OPERAND_IS_COND_BIT (a_operands, a->indices, a_index))
606 {
607 /* Scan operand list of 'b' looking for another reference to the
608 condition bit, which goes in the right direction. */
609 for (b_index = 0;
610 CGEN_OPERAND_INSTANCE_TYPE (b_operands) != CGEN_OPERAND_INSTANCE_END;
611 b_index ++, b_operands ++)
612 {
613 if ((CGEN_OPERAND_INSTANCE_TYPE (b_operands) ==
614 (check_outputs ? CGEN_OPERAND_INSTANCE_OUTPUT : CGEN_OPERAND_INSTANCE_INPUT))
615 && OPERAND_IS_COND_BIT (b_operands, b->indices, b_index))
616 return 1;
617 }
618 }
619 else
6cf2575a 620 {
ca6a899d
NC
621 /* Scan operand list of 'b' looking for an operand that
622 references the same hardware element, and which goes in the
623 right direction. */
a15a45e5
DE
624 for (b_index = 0;
625 CGEN_OPERAND_INSTANCE_TYPE (b_operands) != CGEN_OPERAND_INSTANCE_END;
626 b_index ++, b_operands ++)
627 {
628 if ((CGEN_OPERAND_INSTANCE_TYPE (b_operands) ==
629 (check_outputs ? CGEN_OPERAND_INSTANCE_OUTPUT : CGEN_OPERAND_INSTANCE_INPUT))
630 && (CGEN_OPERAND_INSTANCE_HW (b_operands) == CGEN_OPERAND_INSTANCE_HW (a_operands))
631 && (a->indices [a_index] == b->indices [b_index]))
632 return 1;
633 }
6cf2575a 634 }
26192c50
NC
635 }
636 }
637
6cf2575a 638 return 0;
26192c50
NC
639}
640
6cf2575a 641/* Returns true if the insn can (potentially) alter the program counter. */
48401fcf 642
89285fc9 643static int
6cf2575a 644writes_to_pc (a)
89285fc9 645 m32r_insn * a;
89285fc9 646{
a15a45e5 647#if 0 /* Once PC operands are working.... */
c9cec4ef 648 const CGEN_OPERAND_INSTANCE * a_operands == CGEN_INSN_OPERANDS (a->insn);
8e7a5a04 649
c9cec4ef
NC
650 if (a_operands == NULL)
651 return 0;
652
653 while (CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END)
6cf2575a
NC
654 {
655 if (CGEN_OPERAND_INSTANCE_OPERAND (a_operands) != NULL
656 && CGEN_OPERAND_INDEX (CGEN_OPERAND_INSTANCE_OPERAND (a_operands)) == M32R_OPERAND_PC)
657 return 1;
c9cec4ef
NC
658
659 a_operands ++;
6cf2575a 660 }
8e7a5a04
NC
661#else
662 if (CGEN_INSN_ATTR (a->insn, CGEN_INSN_UNCOND_CTI)
663 || CGEN_INSN_ATTR (a->insn, CGEN_INSN_COND_CTI))
664 return 1;
665#endif
6cf2575a 666 return 0;
89285fc9 667}
26192c50 668
775fdd0c
NC
669/* Returns NULL if the two 16 bit insns can be executed in parallel,
670 otherwise it returns a pointer to an error message explaining why not. */
48401fcf 671
775fdd0c 672static const char *
26192c50 673can_make_parallel (a, b)
b6930bdf
NC
674 m32r_insn * a;
675 m32r_insn * b;
775fdd0c
NC
676{
677 PIPE_ATTR a_pipe;
678 PIPE_ATTR b_pipe;
89285fc9 679
775fdd0c 680 /* Make sure the instructions are the right length. */
b6930bdf
NC
681 if ( CGEN_FIELDS_BITSIZE (& a->fields) != 16
682 || CGEN_FIELDS_BITSIZE (& b->fields) != 16)
775fdd0c 683 abort();
89285fc9 684
6cf2575a 685 if (first_writes_to_seconds_operands (a, b, true))
d0023d7e 686 return _("Instructions write to the same destination register.");
775fdd0c 687
b6930bdf
NC
688 a_pipe = CGEN_INSN_ATTR (a->insn, CGEN_INSN_PIPE);
689 b_pipe = CGEN_INSN_ATTR (b->insn, CGEN_INSN_PIPE);
775fdd0c 690
b6930bdf 691 /* Make sure that the instructions use the correct execution pipelines. */
775fdd0c
NC
692 if ( a_pipe == PIPE_NONE
693 || b_pipe == PIPE_NONE)
d0023d7e 694 return _("Instructions do not use parallel execution pipelines.");
89285fc9
NC
695
696 /* Leave this test for last, since it is the only test that can
697 go away if the instructions are swapped, and we want to make
698 sure that any other errors are detected before this happens. */
775fdd0c
NC
699 if ( a_pipe == PIPE_S
700 || b_pipe == PIPE_O)
d0023d7e 701 return _("Instructions share the same execution pipeline");
89285fc9 702
775fdd0c
NC
703 return NULL;
704}
775fdd0c
NC
705
706#ifdef CGEN_INT_INSN
f2980bb4 707
775fdd0c 708static void
b6930bdf
NC
709make_parallel (buffer)
710 cgen_insn_t * buffer;
775fdd0c
NC
711{
712 /* Force the top bit of the second insn to be set. */
713
714 bfd_vma value;
715
e8dedcb3 716 if (CGEN_OPCODE_ENDIAN (gas_cgen_opcode_desc) == CGEN_ENDIAN_BIG)
775fdd0c
NC
717 {
718 value = bfd_getb16 ((bfd_byte *) buffer);
719 value |= 0x8000;
720 bfd_putb16 (value, (char *) buffer);
721 }
722 else
723 {
724 value = bfd_getl16 ((bfd_byte *) buffer);
725 value |= 0x8000;
726 bfd_putl16 (value, (char *) buffer);
727 }
728}
f2980bb4 729
775fdd0c 730#else
f2980bb4 731
775fdd0c 732static void
b6930bdf
NC
733make_parallel (buffer)
734 char * buffer;
775fdd0c
NC
735{
736 /* Force the top bit of the second insn to be set. */
737
e8dedcb3
NC
738 buffer [CGEN_OPCODE_ENDIAN (gas_cgen_opcode_desc) == CGEN_ENDIAN_BIG ? 0 : 1]
739 |= 0x80;
775fdd0c 740}
775fdd0c 741
f2980bb4 742#endif /* ! CGEN_INT_INSN */
775fdd0c 743
b6930bdf
NC
744static void
745assemble_parallel_insn (str, str2)
ebde3f62 746 char * str;
b6930bdf 747 char * str2;
c8cf7e17 748{
b6930bdf
NC
749 char * str3;
750 m32r_insn first;
751 m32r_insn second;
752 char * errmsg;
ebde3f62 753
b6930bdf 754 * str2 = 0; /* Seperate the two instructions. */
c8cf7e17 755
b6930bdf
NC
756 /* If there was a previous 16 bit insn, then fill the following 16 bit slot,
757 so that the parallel instruction will start on a 32 bit boundary. */
758 if (prev_insn.insn)
759 fill_insn (0);
ebde3f62 760
defc70bf
DE
761 first.debug_sym_link = debug_sym_link;
762 debug_sym_link = (sym_linkS *)0;
763
b6930bdf 764 /* Parse the first instruction. */
e8dedcb3
NC
765 if (! (first.insn = m32r_cgen_assemble_insn
766 (gas_cgen_opcode_desc, str, & first.fields, first.buffer, & errmsg)))
b6930bdf
NC
767 {
768 as_bad (errmsg);
769 return;
770 }
f2980bb4 771
32c2be76
NC
772 if (! enable_special
773 && CGEN_INSN_ATTR (first.insn, CGEN_INSN_SPECIAL))
774 {
775 /* xgettext:c-format */
776 as_bad (_("unknown instruction '%s'"), str);
32c2be76
NC
777 return;
778 }
779 else if (! enable_m32rx
f2980bb4 780 /* FIXME: Need standard macro to perform this test. */
b6930bdf
NC
781 && CGEN_INSN_ATTR (first.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
782 {
32c2be76 783 /* xgettext:c-format */
48401fcf 784 as_bad (_("instruction '%s' is for the M32RX only"), str);
b6930bdf 785 return;
ebde3f62 786 }
32c2be76 787
f2980bb4
DE
788 /* Check to see if this is an allowable parallel insn. */
789 if (CGEN_INSN_ATTR (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
790 {
ca6a899d 791 /* xgettext:c-format */
f2980bb4
DE
792 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
793 return;
a15a45e5
DE
794 }
795
b6930bdf
NC
796 *str2 = '|'; /* Restore the original assembly text, just in case it is needed. */
797 str3 = str; /* Save the original string pointer. */
798 str = str2 + 2; /* Advanced past the parsed string. */
799 str2 = str3; /* Remember the entire string in case it is needed for error messages. */
f2980bb4 800
0f829c8e
CM
801 /* Convert the opcode to lower case. */
802 {
803 char *s2 = str;
804
805 while (isspace (*s2 ++))
806 continue;
807
808 --s2;
809
810 while (isalnum (*s2))
811 {
812 if (isupper ((unsigned char) *s2))
813 *s2 = tolower (*s2);
814 s2 ++;
815 }
816 }
817
b6930bdf 818 /* Preserve any fixups that have been generated and reset the list to empty. */
0f829c8e 819 gas_cgen_save_fixups ();
b6930bdf 820
f2980bb4 821 /* Get the indices of the operands of the instruction. */
6cf2575a
NC
822 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
823 doesn't seem right. Perhaps allow passing fields like we do insn. */
c9cec4ef
NC
824 /* FIXME: ALIAS insns do not have operands, so we use this function
825 to find the equivalent insn and overwrite the value stored in our
a15a45e5
DE
826 structure. We still need the original insn, however, since this
827 may have certain attributes that are not present in the unaliased
828 version (eg relaxability). When aliases behave differently this
829 may have to change. */
830 first.orig_insn = first.insn;
ca6a899d 831 first.insn = m32r_cgen_lookup_get_insn_operands
e8dedcb3
NC
832 (gas_cgen_opcode_desc, NULL, bfd_getb16 ((char *) first.buffer), 16,
833 first.indices);
ca6a899d 834
c9cec4ef 835 if (first.insn == NULL)
f2980bb4 836 as_fatal (_("internal error: m32r_cgen_lookup_get_insn_operands failed for first insn"));
6cf2575a 837
defc70bf
DE
838 second.debug_sym_link = NULL;
839
b6930bdf 840 /* Parse the second instruction. */
e8dedcb3
NC
841 if (! (second.insn = m32r_cgen_assemble_insn
842 (gas_cgen_opcode_desc, str, & second.fields, second.buffer, & errmsg)))
4e9d8dea
DE
843 {
844 as_bad (errmsg);
845 return;
846 }
c8cf7e17 847
b6930bdf 848 /* Check it. */
32c2be76
NC
849 if (! enable_special
850 && CGEN_INSN_ATTR (second.insn, CGEN_INSN_SPECIAL))
851 {
852 /* xgettext:c-format */
853 as_bad (_("unknown instruction '%s'"), str);
32c2be76
NC
854 return;
855 }
856 else if (! enable_m32rx
b6930bdf 857 && CGEN_INSN_ATTR (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
ebde3f62 858 {
32c2be76 859 /* xgettext:c-format */
48401fcf 860 as_bad (_("instruction '%s' is for the M32RX only"), str);
ebde3f62
NC
861 return;
862 }
f2980bb4
DE
863
864 /* Check to see if this is an allowable parallel insn. */
865 if (CGEN_INSN_ATTR (second.insn, CGEN_INSN_PIPE) == PIPE_NONE)
866 {
ca6a899d 867 /* xgettext:c-format */
f2980bb4
DE
868 as_bad (_("instruction '%s' cannot be executed in parallel."), str);
869 return;
870 }
ebde3f62 871
b6930bdf 872 if (! enable_m32rx)
ebde3f62 873 {
f2980bb4
DE
874 if (CGEN_INSN_NUM (first.insn) != M32R_INSN_NOP
875 && CGEN_INSN_NUM (second.insn) != M32R_INSN_NOP)
ebde3f62 876 {
32c2be76 877 /* xgettext:c-format */
48401fcf 878 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2);
b6930bdf 879 return;
ebde3f62 880 }
b6930bdf 881 }
9121b102 882
f2980bb4 883 /* Get the indices of the operands of the instruction. */
a15a45e5 884 second.orig_insn = second.insn;
ca6a899d 885 second.insn = m32r_cgen_lookup_get_insn_operands
e8dedcb3
NC
886 (gas_cgen_opcode_desc, NULL, bfd_getb16 ((char *) second.buffer), 16,
887 second.indices);
ca6a899d 888
c9cec4ef 889 if (second.insn == NULL)
f2980bb4 890 as_fatal (_("internal error: m32r_cgen_lookup_get_insn_operands failed for second insn"));
6cf2575a 891
b6930bdf
NC
892 /* We assume that if the first instruction writes to a register that is
893 read by the second instruction it is because the programmer intended
894 this to happen, (after all they have explicitly requested that these
26192c50
NC
895 two instructions be executed in parallel). Although if the global
896 variable warn_explicit_parallel_conflicts is true then we do generate
897 a warning message. Similarly we assume that parallel branch and jump
00aa5b17 898 instructions are deliberate and should not produce errors. */
b6930bdf 899
00aa5b17 900 if (warn_explicit_parallel_conflicts)
b6930bdf 901 {
6cf2575a 902 if (first_writes_to_seconds_operands (& first, & second, false))
32c2be76 903 /* xgettext:c-format */
48401fcf 904 as_warn (_("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2);
26192c50 905
6cf2575a 906 if (first_writes_to_seconds_operands (& second, & first, false))
32c2be76 907 /* xgettext:c-format */
48401fcf 908 as_warn (_("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2);
00aa5b17
DE
909 }
910
911 if ((errmsg = (char *) can_make_parallel (& first, & second)) == NULL)
912 {
b6930bdf 913 /* Get the fixups for the first instruction. */
e8dedcb3 914 gas_cgen_swap_fixups ();
b6930bdf
NC
915
916 /* Write it out. */
defc70bf 917 expand_debug_syms (first.debug_sym_link, 1);
e8dedcb3 918 gas_cgen_finish_insn (first.orig_insn, first.buffer,
defc70bf 919 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
ebde3f62 920
b6930bdf
NC
921 /* Force the top bit of the second insn to be set. */
922 make_parallel (second.buffer);
ebde3f62 923
b6930bdf 924 /* Get its fixups. */
e8dedcb3 925 gas_cgen_restore_fixups ();
775fdd0c 926
b6930bdf 927 /* Write it out. */
defc70bf 928 expand_debug_syms (second.debug_sym_link, 1);
e8dedcb3 929 gas_cgen_finish_insn (second.orig_insn, second.buffer,
defc70bf 930 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
b6930bdf 931 }
89285fc9 932 /* Try swapping the instructions to see if they work that way. */
6cf2575a 933 else if (can_make_parallel (& second, & first) == NULL)
b6930bdf
NC
934 {
935 /* Write out the second instruction first. */
defc70bf 936 expand_debug_syms (second.debug_sym_link, 1);
e8dedcb3 937 gas_cgen_finish_insn (second.orig_insn, second.buffer,
defc70bf 938 CGEN_FIELDS_BITSIZE (& second.fields), 0, NULL);
775fdd0c 939
b6930bdf
NC
940 /* Force the top bit of the first instruction to be set. */
941 make_parallel (first.buffer);
942
943 /* Get the fixups for the first instruction. */
e8dedcb3 944 gas_cgen_restore_fixups ();
b6930bdf
NC
945
946 /* Write out the first instruction. */
defc70bf 947 expand_debug_syms (first.debug_sym_link, 1);
e8dedcb3 948 gas_cgen_finish_insn (first.orig_insn, first.buffer,
defc70bf 949 CGEN_FIELDS_BITSIZE (& first.fields), 0, NULL);
b6930bdf
NC
950 }
951 else
952 {
953 as_bad ("'%s': %s", str2, errmsg);
954 return;
955 }
ebde3f62 956
b6930bdf
NC
957 /* Set these so m32r_fill_insn can use them. */
958 prev_seg = now_seg;
959 prev_subseg = now_subseg;
b6930bdf 960}
55a4759f 961
b6930bdf
NC
962/* end-sanitize-m32rx */
963
964
965void
966md_assemble (str)
967 char * str;
968{
969 m32r_insn insn;
970 char * errmsg;
971 char * str2 = NULL;
972
973 /* Initialize GAS's cgen interface for a new instruction. */
e8dedcb3 974 gas_cgen_init_parse ();
b6930bdf
NC
975
976/* start-sanitize-m32rx */
977 /* Look for a parallel instruction seperator. */
978 if ((str2 = strstr (str, "||")) != NULL)
979 {
980 assemble_parallel_insn (str, str2);
981 return;
ebde3f62 982 }
b6930bdf
NC
983/* end-sanitize-m32rx */
984
defc70bf
DE
985 insn.debug_sym_link = debug_sym_link;
986 debug_sym_link = (sym_linkS *)0;
987
e8dedcb3
NC
988 insn.insn = m32r_cgen_assemble_insn
989 (gas_cgen_opcode_desc, str, & insn.fields, insn.buffer, & errmsg);
ca6a899d 990
b6930bdf
NC
991 if (!insn.insn)
992 {
993 as_bad (errmsg);
994 return;
995 }
996
997/* start-sanitize-m32rx */
32c2be76
NC
998 if (! enable_special
999 && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_SPECIAL))
1000 {
1001 /* xgettext:c-format */
1002 as_bad (_("unknown instruction '%s'"), str);
32c2be76
NC
1003 return;
1004 }
1005 else if (! enable_m32rx
1006 && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
b6930bdf 1007 {
32c2be76 1008 /* xgettext:c-format */
48401fcf 1009 as_bad (_("instruction '%s' is for the M32RX only"), str);
b6930bdf
NC
1010 return;
1011 }
1012/* end-sanitize-m32rx */
1013
1014 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
c8cf7e17
DE
1015 {
1016 /* 32 bit insns must live on 32 bit boundaries. */
b6930bdf 1017 if (prev_insn.insn || seen_relaxable_p)
ebde3f62 1018 {
0c22a4c1 1019 /* ??? If calling fill_insn too many times turns us into a memory
e8dedcb3
NC
1020 pig, can we call a fn to assemble a nop instead of
1021 !seen_relaxable_p? */
ebde3f62
NC
1022 fill_insn (0);
1023 }
f2980bb4 1024
defc70bf
DE
1025 expand_debug_syms (insn.debug_sym_link, 2);
1026
f2980bb4 1027 /* Doesn't really matter what we pass for RELAX_P here. */
e8dedcb3 1028 gas_cgen_finish_insn (insn.insn, insn.buffer,
defc70bf 1029 CGEN_FIELDS_BITSIZE (& insn.fields), 1, NULL);
c8cf7e17
DE
1030 }
1031 else
1032 {
defc70bf 1033 int on_32bit_boundary_p;
b6930bdf 1034/* start-sanitize-m32rx */
b6930bdf 1035 int swap = false;
b6930bdf 1036/* end-sanitize-m32rx */
f2980bb4 1037
b6930bdf
NC
1038 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
1039 abort();
f2980bb4 1040
defc70bf
DE
1041 insn.orig_insn = insn.insn;
1042/* start-sanitize-m32rx */
f2980bb4
DE
1043 if (enable_m32rx)
1044 {
1045 /* Get the indices of the operands of the instruction.
1046 FIXME: See assemble_parallel for notes on orig_insn. */
ca6a899d 1047 insn.insn = m32r_cgen_lookup_get_insn_operands
e8dedcb3
NC
1048 (gas_cgen_opcode_desc, NULL, bfd_getb16 ((char *) insn.buffer),
1049 16, insn.indices);
ca6a899d 1050
f2980bb4
DE
1051 if (insn.insn == NULL)
1052 as_fatal (_("internal error: m32r_cgen_get_insn_operands failed"));
1053 }
defc70bf 1054/* end-sanitize-m32rx */
6cf2575a 1055
defc70bf 1056 /* Compute whether we're on a 32 bit boundary or not.
b6930bdf 1057 prev_insn.insn is NULL when we're on a 32 bit boundary. */
defc70bf 1058 on_32bit_boundary_p = prev_insn.insn == NULL;
f2980bb4 1059
defc70bf
DE
1060/* start-sanitize-m32rx */
1061 /* Look to see if this instruction can be combined with the
1062 previous instruction to make one, parallel, 32 bit instruction.
1063 If the previous instruction (potentially) changed the flow of
1064 program control, then it cannot be combined with the current
1065 instruction. If the current instruction is relaxable, then it
1066 might be replaced with a longer version, so we cannot combine it.
1067 Also if the output of the previous instruction is used as an
1068 input to the current instruction then it cannot be combined.
1069 Otherwise call can_make_parallel() with both orderings of the
1070 instructions to see if they can be combined. */
1071 if ( ! on_32bit_boundary_p
1072 && enable_m32rx
1073 && optimize
1074 && CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_RELAXABLE) == 0
1075 && ! writes_to_pc (& prev_insn)
1076 && ! first_writes_to_seconds_operands (& prev_insn, &insn, false)
1077 )
775fdd0c 1078 {
defc70bf
DE
1079 if (can_make_parallel (& prev_insn, & insn) == NULL)
1080 make_parallel (insn.buffer);
1081 else if (can_make_parallel (& insn, & prev_insn) == NULL)
1082 swap = true;
775fdd0c 1083 }
defc70bf
DE
1084/* end-sanitize-m32rx */
1085
1086 expand_debug_syms (insn.debug_sym_link, 1);
1087
1088 {
1089 int i;
1090 finished_insnS fi;
1091
1092 /* Ensure each pair of 16 bit insns is in the same frag. */
1093 frag_grow (4);
c8cf7e17 1094
e8dedcb3 1095 gas_cgen_finish_insn (insn.orig_insn, insn.buffer,
defc70bf
DE
1096 CGEN_FIELDS_BITSIZE (& insn.fields),
1097 1 /*relax_p*/, &fi);
1098 insn.addr = fi.addr;
1099 insn.frag = fi.frag;
1100 insn.num_fixups = fi.num_fixups;
1101 for (i = 0; i < fi.num_fixups; ++i)
1102 insn.fixups[i] = fi.fixups[i];
1103 }
b6930bdf
NC
1104
1105/* start-sanitize-m32rx */
b6930bdf
NC
1106 if (swap)
1107 {
defc70bf 1108 int i,tmp;
f2980bb4 1109
b6930bdf
NC
1110#define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
1111
1112 /* Swap the two insns */
1113 SWAP_BYTES (prev_insn.addr [0], insn.addr [0]);
1114 SWAP_BYTES (prev_insn.addr [1], insn.addr [1]);
1115
1116 make_parallel (insn.addr);
1117
1118 /* Swap any relaxable frags recorded for the two insns. */
defc70bf 1119 /* FIXME: Clarify. relaxation precludes parallel insns */
b6930bdf 1120 if (prev_insn.frag->fr_opcode == prev_insn.addr)
b86c0dd3 1121 prev_insn.frag->fr_opcode = insn.addr;
b6930bdf 1122 else if (insn.frag->fr_opcode == insn.addr)
b86c0dd3 1123 insn.frag->fr_opcode = prev_insn.addr;
b6930bdf 1124
defc70bf
DE
1125 /* Update the addresses in any fixups.
1126 Note that we don't have to handle the case where each insn is in
1127 a different frag as we ensure they're in the same frag above. */
1128 for (i = 0; i < prev_insn.num_fixups; ++i)
1129 prev_insn.fixups[i]->fx_where += 2;
1130 for (i = 0; i < insn.num_fixups; ++i)
1131 insn.fixups[i]->fx_where -= 2;
1132 }
b6930bdf 1133/* end-sanitize-m32rx */
defc70bf
DE
1134
1135 /* Keep track of whether we've seen a pair of 16 bit insns.
1136 prev_insn.insn is NULL when we're on a 32 bit boundary. */
1137 if (on_32bit_boundary_p)
1138 prev_insn = insn;
1139 else
1140 prev_insn.insn = NULL;
b6930bdf 1141
c8cf7e17
DE
1142 /* If the insn needs the following one to be on a 32 bit boundary
1143 (e.g. subroutine calls), fill this insn's slot. */
defc70bf 1144 if (on_32bit_boundary_p
f2980bb4 1145 && CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_FILL_SLOT) != 0)
c8cf7e17 1146 fill_insn (0);
c8cf7e17 1147
775fdd0c 1148 /* If this is a relaxable insn (can be replaced with a larger version)
b6930bdf
NC
1149 mark the fact so that we can emit an alignment directive for a
1150 following 32 bit insn if we see one. */
f2980bb4 1151 if (CGEN_INSN_ATTR (insn.orig_insn, CGEN_INSN_RELAXABLE) != 0)
775fdd0c
NC
1152 seen_relaxable_p = 1;
1153 }
c8cf7e17
DE
1154
1155 /* Set these so m32r_fill_insn can use them. */
ebde3f62 1156 prev_seg = now_seg;
c8cf7e17
DE
1157 prev_subseg = now_subseg;
1158}
1159
1160/* The syntax in the manual says constants begin with '#'.
1161 We just ignore it. */
1162
1163void
1164md_operand (expressionP)
ebde3f62 1165 expressionS * expressionP;
c8cf7e17 1166{
ebde3f62 1167 if (* input_line_pointer == '#')
c8cf7e17 1168 {
ebde3f62 1169 input_line_pointer ++;
c8cf7e17
DE
1170 expression (expressionP);
1171 }
1172}
1173
1174valueT
1175md_section_align (segment, size)
ebde3f62 1176 segT segment;
c8cf7e17
DE
1177 valueT size;
1178{
1179 int align = bfd_get_section_alignment (stdoutput, segment);
1180 return ((size + (1 << align) - 1) & (-1 << align));
1181}
1182
1183symbolS *
1184md_undefined_symbol (name)
ebde3f62 1185 char * name;
c8cf7e17
DE
1186{
1187 return 0;
1188}
1189\f
1190/* .scomm pseudo-op handler.
1191
1192 This is a new pseudo-op to handle putting objects in .scommon.
1193 By doing this the linker won't need to do any work and more importantly
1194 it removes the implicit -G arg necessary to correctly link the object file.
1195*/
1196
1197static void
1198m32r_scomm (ignore)
1199 int ignore;
1200{
ebde3f62
NC
1201 register char * name;
1202 register char c;
1203 register char * p;
1204 offsetT size;
1205 register symbolS * symbolP;
1206 offsetT align;
1207 int align2;
c8cf7e17
DE
1208
1209 name = input_line_pointer;
1210 c = get_symbol_end ();
1211
1212 /* just after name is now '\0' */
1213 p = input_line_pointer;
ebde3f62 1214 * p = c;
c8cf7e17 1215 SKIP_WHITESPACE ();
ebde3f62 1216 if (* input_line_pointer != ',')
c8cf7e17 1217 {
48401fcf 1218 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
c8cf7e17
DE
1219 ignore_rest_of_line ();
1220 return;
1221 }
1222
b6930bdf 1223 input_line_pointer ++; /* skip ',' */
c8cf7e17
DE
1224 if ((size = get_absolute_expression ()) < 0)
1225 {
ca6a899d 1226 /* xgettext:c-format */
48401fcf 1227 as_warn (_(".SCOMMon length (%ld.) <0! Ignored."), (long) size);
c8cf7e17
DE
1228 ignore_rest_of_line ();
1229 return;
1230 }
1231
1232 /* The third argument to .scomm is the alignment. */
ebde3f62 1233 if (* input_line_pointer != ',')
c8cf7e17
DE
1234 align = 8;
1235 else
1236 {
ebde3f62 1237 ++ input_line_pointer;
c8cf7e17
DE
1238 align = get_absolute_expression ();
1239 if (align <= 0)
1240 {
48401fcf 1241 as_warn (_("ignoring bad alignment"));
c8cf7e17
DE
1242 align = 8;
1243 }
1244 }
1245 /* Convert to a power of 2 alignment. */
1246 if (align)
1247 {
ebde3f62 1248 for (align2 = 0; (align & 1) == 0; align >>= 1, ++ align2)
c8cf7e17
DE
1249 continue;
1250 if (align != 1)
1251 {
48401fcf 1252 as_bad (_("Common alignment not a power of 2"));
c8cf7e17
DE
1253 ignore_rest_of_line ();
1254 return;
1255 }
1256 }
1257 else
1258 align2 = 0;
1259
ebde3f62 1260 * p = 0;
c8cf7e17 1261 symbolP = symbol_find_or_make (name);
ebde3f62 1262 * p = c;
c8cf7e17
DE
1263
1264 if (S_IS_DEFINED (symbolP))
1265 {
ca6a899d 1266 /* xgettext:c-format */
48401fcf 1267 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
c8cf7e17
DE
1268 S_GET_NAME (symbolP));
1269 ignore_rest_of_line ();
1270 return;
1271 }
1272
1273 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1274 {
ca6a899d 1275 /* xgettext:c-format */
48401fcf 1276 as_bad (_("Length of .scomm \"%s\" is already %ld. Not changed to %ld."),
c8cf7e17
DE
1277 S_GET_NAME (symbolP),
1278 (long) S_GET_VALUE (symbolP),
1279 (long) size);
1280
1281 ignore_rest_of_line ();
1282 return;
1283 }
1284
1285 if (symbolP->local)
1286 {
ebde3f62
NC
1287 segT old_sec = now_seg;
1288 int old_subsec = now_subseg;
1289 char * pfrag;
c8cf7e17
DE
1290
1291 record_alignment (sbss_section, align2);
1292 subseg_set (sbss_section, 0);
775fdd0c 1293
c8cf7e17
DE
1294 if (align2)
1295 frag_align (align2, 0, 0);
775fdd0c 1296
c8cf7e17
DE
1297 if (S_GET_SEGMENT (symbolP) == sbss_section)
1298 symbolP->sy_frag->fr_symbol = 0;
775fdd0c 1299
c8cf7e17 1300 symbolP->sy_frag = frag_now;
b6930bdf 1301
c8cf7e17
DE
1302 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1303 (char *) 0);
ebde3f62 1304 * pfrag = 0;
c8cf7e17
DE
1305 S_SET_SIZE (symbolP, size);
1306 S_SET_SEGMENT (symbolP, sbss_section);
1307 S_CLEAR_EXTERNAL (symbolP);
1308 subseg_set (old_sec, old_subsec);
1309 }
1310 else
1311 {
1312 S_SET_VALUE (symbolP, (valueT) size);
1313 S_SET_ALIGN (symbolP, align2);
1314 S_SET_EXTERNAL (symbolP);
b6930bdf 1315 S_SET_SEGMENT (symbolP, & scom_section);
c8cf7e17
DE
1316 }
1317
1318 demand_empty_rest_of_line ();
1319}
1320\f
1321/* Interface to relax_segment. */
1322
1323/* FIXME: Build table by hand, get it working, then machine generate. */
1324
1325const relax_typeS md_relax_table[] =
1326{
1327/* The fields are:
1328 1) most positive reach of this state,
1329 2) most negative reach of this state,
1330 3) how many bytes this mode will add to the size of the current frag
1331 4) which index into the table to try if we can't fit into this one. */
1332
1333 /* The first entry must be unused because an `rlx_more' value of zero ends
1334 each list. */
1335 {1, 1, 0, 0},
1336
1337 /* The displacement used by GAS is from the end of the 2 byte insn,
1338 so we subtract 2 from the following. */
1339 /* 16 bit insn, 8 bit disp -> 10 bit range.
1340 This doesn't handle a branch in the right slot at the border:
1341 the "& -4" isn't taken into account. It's not important enough to
1342 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1343 case). */
1344 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1345 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1346 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1347 /* Same thing, but with leading nop for alignment. */
1348 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1349};
1350
1351long
1352m32r_relax_frag (fragP, stretch)
ebde3f62
NC
1353 fragS * fragP;
1354 long stretch;
c8cf7e17
DE
1355{
1356 /* Address of branch insn. */
1357 long address = fragP->fr_address + fragP->fr_fix - 2;
1358 long growth = 0;
1359
1360 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1361 if (fragP->fr_subtype == 2)
1362 {
1363 if ((address & 3) != 0)
1364 {
1365 fragP->fr_subtype = 3;
1366 growth = 2;
1367 }
1368 }
1369 else if (fragP->fr_subtype == 3)
1370 {
1371 if ((address & 3) == 0)
1372 {
1373 fragP->fr_subtype = 2;
1374 growth = -2;
1375 }
1376 }
1377 else
1378 {
1379 growth = relax_frag (fragP, stretch);
1380
1381 /* Long jump on odd halfword boundary? */
1382 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1383 {
1384 fragP->fr_subtype = 3;
1385 growth += 2;
1386 }
1387 }
1388
1389 return growth;
1390}
1391
1392/* Return an initial guess of the length by which a fragment must grow to
1393 hold a branch to reach its destination.
1394 Also updates fr_type/fr_subtype as necessary.
1395
1396 Called just before doing relaxation.
1397 Any symbol that is now undefined will not become defined.
1398 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1399 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1400 Although it may not be explicit in the frag, pretend fr_var starts with a
1401 0 value. */
1402
1403int
1404md_estimate_size_before_relax (fragP, segment)
ebde3f62
NC
1405 fragS * fragP;
1406 segT segment;
c8cf7e17 1407{
ebde3f62 1408 int old_fr_fix = fragP->fr_fix;
c8cf7e17
DE
1409
1410 /* The only thing we have to handle here are symbols outside of the
1411 current segment. They may be undefined or in a different segment in
1412 which case linker scripts may place them anywhere.
1413 However, we can't finish the fragment here and emit the reloc as insn
1414 alignment requirements may move the insn about. */
1415
1416 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
1417 {
1418 /* The symbol is undefined in this segment.
1419 Change the relaxation subtype to the max allowable and leave
1420 all further handling to md_convert_frag. */
1421 fragP->fr_subtype = 2;
1422
1423#if 0 /* Can't use this, but leave in for illustration. */
1424 /* Change 16 bit insn to 32 bit insn. */
e8dedcb3 1425 fragP->fr_opcode[0] |= 0x80;
c8cf7e17
DE
1426
1427 /* Increase known (fixed) size of fragment. */
1428 fragP->fr_fix += 2;
1429
1430 /* Create a relocation for it. */
1431 fix_new (fragP, old_fr_fix, 4,
1432 fragP->fr_symbol,
1433 fragP->fr_offset, 1 /* pcrel */,
1434 /* FIXME: Can't use a real BFD reloc here.
e8dedcb3 1435 gas_cgen_md_apply_fix3 can't handle it. */
c8cf7e17
DE
1436 BFD_RELOC_M32R_26_PCREL);
1437
1438 /* Mark this fragment as finished. */
1439 frag_wane (fragP);
1440#else
a450e9f4 1441 {
ebde3f62
NC
1442 const CGEN_INSN * insn;
1443 int i;
a450e9f4
NC
1444
1445 /* Update the recorded insn.
1446 Fortunately we don't have to look very far.
1447 FIXME: Change this to record in the instruction the next higher
1448 relaxable insn to use. */
1449 for (i = 0, insn = fragP->fr_cgen.insn; i < 4; i++, insn++)
1450 {
b5e9e562
DE
1451 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1452 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
a450e9f4
NC
1453 == 0)
1454 && CGEN_INSN_ATTR (insn, CGEN_INSN_RELAX))
1455 break;
1456 }
1457 if (i == 4)
1458 abort ();
b6930bdf 1459
a450e9f4
NC
1460 fragP->fr_cgen.insn = insn;
1461 return 2;
1462 }
c8cf7e17
DE
1463#endif
1464 }
1465
1466 return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
1467}
1468
1469/* *fragP has been relaxed to its final size, and now needs to have
1470 the bytes inside it modified to conform to the new size.
1471
1472 Called after relaxation is finished.
1473 fragP->fr_type == rs_machine_dependent.
1474 fragP->fr_subtype is the subtype of what the address relaxed to. */
1475
1476void
1477md_convert_frag (abfd, sec, fragP)
775fdd0c
NC
1478 bfd * abfd;
1479 segT sec;
1480 fragS * fragP;
c8cf7e17 1481{
ebde3f62
NC
1482 char * opcode;
1483 char * displacement;
1484 int target_address;
1485 int opcode_address;
1486 int extension;
1487 int addend;
c8cf7e17
DE
1488
1489 opcode = fragP->fr_opcode;
1490
1491 /* Address opcode resides at in file space. */
1492 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1493
1494 switch (fragP->fr_subtype)
1495 {
1496 case 1 :
1497 extension = 0;
ebde3f62 1498 displacement = & opcode[1];
c8cf7e17
DE
1499 break;
1500 case 2 :
1501 opcode[0] |= 0x80;
1502 extension = 2;
ebde3f62 1503 displacement = & opcode[1];
c8cf7e17
DE
1504 break;
1505 case 3 :
1506 opcode[2] = opcode[0] | 0x80;
1507 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1508 opcode_address += 2;
1509 extension = 4;
ebde3f62 1510 displacement = & opcode[3];
c8cf7e17
DE
1511 break;
1512 default :
1513 abort ();
1514 }
1515
1516 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1517 {
1518 /* symbol must be resolved by linker */
1519 if (fragP->fr_offset & 3)
48401fcf 1520 as_warn (_("Addend to unresolved symbol not on word boundary."));
c8cf7e17
DE
1521 addend = fragP->fr_offset >> 2;
1522 }
1523 else
1524 {
1525 /* Address we want to reach in file space. */
1526 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
1527 target_address += fragP->fr_symbol->sy_frag->fr_address;
1528 addend = (target_address - (opcode_address & -4)) >> 2;
1529 }
1530
1531 /* Create a relocation for symbols that must be resolved by the linker.
1532 Otherwise output the completed insn. */
1533
1534 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1535 {
1536 assert (fragP->fr_subtype != 1);
a450e9f4 1537 assert (fragP->fr_cgen.insn != 0);
e8dedcb3
NC
1538 gas_cgen_record_fixup (fragP,
1539 /* Offset of branch insn in frag. */
1540 fragP->fr_fix + extension - 4,
1541 fragP->fr_cgen.insn,
1542 4 /*length*/,
1543 /* FIXME: quick hack */
c8cf7e17 1544#if 0
e8dedcb3 1545 CGEN_OPERAND_ENTRY (fragP->fr_cgen.opindex),
c8cf7e17 1546#else
e8dedcb3 1547 CGEN_OPERAND_ENTRY (M32R_OPERAND_DISP24),
c8cf7e17 1548#endif
e8dedcb3
NC
1549 fragP->fr_cgen.opinfo,
1550 fragP->fr_symbol, fragP->fr_offset);
c8cf7e17
DE
1551 }
1552
1553#define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1554
1555 md_number_to_chars (displacement, (valueT) addend,
1556 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1557
1558 fragP->fr_fix += extension;
1559}
1560\f
1561/* Functions concerning relocs. */
1562
1563/* The location from which a PC relative jump should be calculated,
1564 given a PC relative reloc. */
1565
1566long
1567md_pcrel_from_section (fixP, sec)
ebde3f62
NC
1568 fixS * fixP;
1569 segT sec;
c8cf7e17
DE
1570{
1571 if (fixP->fx_addsy != (symbolS *) NULL
1572 && (! S_IS_DEFINED (fixP->fx_addsy)
1573 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
1574 {
1575 /* The symbol is undefined (or is defined but not in this section).
1576 Let the linker figure it out. */
1577 return 0;
1578 }
1579
1580 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1581}
1582
1583/* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1584 Returns BFD_RELOC_NONE if no reloc type can be found.
1585 *FIXP may be modified if desired. */
1586
1587bfd_reloc_code_real_type
e8dedcb3 1588md_cgen_lookup_reloc (insn, operand, fixP)
ebde3f62
NC
1589 const CGEN_INSN * insn;
1590 const CGEN_OPERAND * operand;
1591 fixS * fixP;
c8cf7e17
DE
1592{
1593 switch (CGEN_OPERAND_TYPE (operand))
1594 {
1595 case M32R_OPERAND_DISP8 : return BFD_RELOC_M32R_10_PCREL;
1596 case M32R_OPERAND_DISP16 : return BFD_RELOC_M32R_18_PCREL;
1597 case M32R_OPERAND_DISP24 : return BFD_RELOC_M32R_26_PCREL;
1598 case M32R_OPERAND_UIMM24 : return BFD_RELOC_M32R_24;
1599 case M32R_OPERAND_HI16 :
1600 case M32R_OPERAND_SLO16 :
1601 case M32R_OPERAND_ULO16 :
1602 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1603 if (fixP->tc_fix_data.opinfo != 0)
1604 return fixP->tc_fix_data.opinfo;
1605 break;
e8dedcb3
NC
1606 default : /* avoid -Wall warning */
1607 break;
c8cf7e17
DE
1608 }
1609 return BFD_RELOC_NONE;
1610}
1611
b6930bdf
NC
1612/* Record a HI16 reloc for later matching with its LO16 cousin. */
1613
1614static void
1615m32r_record_hi16 (reloc_type, fixP, seg)
1616 int reloc_type;
1617 fixS * fixP;
1618 segT seg;
1619{
1620 struct m32r_hi_fixup * hi_fixup;
1621
1622 assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1623 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1624
1625 hi_fixup = ((struct m32r_hi_fixup *)
1626 xmalloc (sizeof (struct m32r_hi_fixup)));
1627 hi_fixup->fixp = fixP;
1628 hi_fixup->seg = now_seg;
1629 hi_fixup->next = m32r_hi_fixup_list;
1630
1631 m32r_hi_fixup_list = hi_fixup;
1632}
1633
c8cf7e17
DE
1634/* Called while parsing an instruction to create a fixup.
1635 We need to check for HI16 relocs and queue them up for later sorting. */
1636
1637fixS *
1638m32r_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
ebde3f62
NC
1639 fragS * frag;
1640 int where;
1641 const CGEN_INSN * insn;
1642 int length;
1643 const CGEN_OPERAND * operand;
1644 int opinfo;
1645 expressionS * exp;
c8cf7e17 1646{
e8dedcb3
NC
1647 fixS * fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
1648 operand, opinfo, exp);
c8cf7e17
DE
1649
1650 switch (CGEN_OPERAND_TYPE (operand))
1651 {
1652 case M32R_OPERAND_HI16 :
1653 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1654 if (fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_SLO
1655 || fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_ULO)
1656 m32r_record_hi16 (fixP->tc_fix_data.opinfo, fixP, now_seg);
1657 break;
e8dedcb3
NC
1658 default : /* avoid -Wall warning */
1659 break;
c8cf7e17
DE
1660 }
1661
1662 return fixP;
1663}
1664
c8cf7e17
DE
1665/* Return BFD reloc type from opinfo field in a fixS.
1666 It's tricky using fx_r_type in m32r_frob_file because the values
1667 are BFD_RELOC_UNUSED + operand number. */
1668#define FX_OPINFO_R_TYPE(f) ((f)->tc_fix_data.opinfo)
1669
1670/* Sort any unmatched HI16 relocs so that they immediately precede
1671 the corresponding LO16 reloc. This is called before md_apply_fix and
1672 tc_gen_reloc. */
1673
1674void
1675m32r_frob_file ()
1676{
ebde3f62 1677 struct m32r_hi_fixup * l;
c8cf7e17
DE
1678
1679 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
1680 {
ebde3f62
NC
1681 segment_info_type * seginfo;
1682 int pass;
c8cf7e17
DE
1683
1684 assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_SLO
1685 || FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_ULO);
1686
1687 /* Check quickly whether the next fixup happens to be a matching low. */
1688 if (l->fixp->fx_next != NULL
1689 && FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_M32R_LO16
1690 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
1691 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
1692 continue;
1693
1694 /* Look through the fixups for this segment for a matching `low'.
1695 When we find one, move the high/shigh just in front of it. We do
1696 this in two passes. In the first pass, we try to find a
1697 unique `low'. In the second pass, we permit multiple high's
1698 relocs for a single `low'. */
1699 seginfo = seg_info (l->seg);
1700 for (pass = 0; pass < 2; pass++)
1701 {
ebde3f62
NC
1702 fixS * f;
1703 fixS * prev;
c8cf7e17
DE
1704
1705 prev = NULL;
1706 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
1707 {
1708 /* Check whether this is a `low' fixup which matches l->fixp. */
1709 if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_M32R_LO16
1710 && f->fx_addsy == l->fixp->fx_addsy
1711 && f->fx_offset == l->fixp->fx_offset
1712 && (pass == 1
1713 || prev == NULL
1714 || (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_SLO
1715 && FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_ULO)
1716 || prev->fx_addsy != f->fx_addsy
1717 || prev->fx_offset != f->fx_offset))
1718 {
ebde3f62 1719 fixS ** pf;
c8cf7e17
DE
1720
1721 /* Move l->fixp before f. */
1722 for (pf = &seginfo->fix_root;
ebde3f62
NC
1723 * pf != l->fixp;
1724 pf = & (* pf)->fx_next)
1725 assert (* pf != NULL);
c8cf7e17 1726
ebde3f62 1727 * pf = l->fixp->fx_next;
c8cf7e17
DE
1728
1729 l->fixp->fx_next = f;
1730 if (prev == NULL)
1731 seginfo->fix_root = l->fixp;
1732 else
1733 prev->fx_next = l->fixp;
1734
1735 break;
1736 }
1737
1738 prev = f;
1739 }
1740
1741 if (f != NULL)
1742 break;
1743
7c629878
DE
1744 if (pass == 1
1745 && warn_unmatched_high)
c8cf7e17 1746 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
48401fcf 1747 _("Unmatched high/shigh reloc"));
c8cf7e17
DE
1748 }
1749 }
1750}
1751
1752/* See whether we need to force a relocation into the output file.
1753 This is used to force out switch and PC relative relocations when
1754 relaxing. */
1755
1756int
1757m32r_force_relocation (fix)
ebde3f62 1758 fixS * fix;
c8cf7e17 1759{
0f829c8e 1760 if (fix->fx_r_type == BFD_RELOC_VTABLE_INHERIT
5dbf2f20 1761 || fix->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
0f829c8e
CM
1762 return 1;
1763
c8cf7e17
DE
1764 if (! m32r_relax)
1765 return 0;
1766
1767 return (fix->fx_pcrel
1768 || 0 /* ??? */);
1769}
1770\f
1771/* Write a value out to the object file, using the appropriate endianness. */
1772
1773void
1774md_number_to_chars (buf, val, n)
ebde3f62 1775 char * buf;
c8cf7e17 1776 valueT val;
ebde3f62 1777 int n;
c8cf7e17
DE
1778{
1779 if (target_big_endian)
1780 number_to_chars_bigendian (buf, val, n);
1781 else
1782 number_to_chars_littleendian (buf, val, n);
1783}
1784
1785/* Turn a string in input_line_pointer into a floating point constant of type
1786 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1787 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1788*/
1789
1790/* Equal to MAX_PRECISION in atof-ieee.c */
1791#define MAX_LITTLENUMS 6
1792
1793char *
1794md_atof (type, litP, sizeP)
1795 char type;
1796 char *litP;
1797 int *sizeP;
1798{
ebde3f62
NC
1799 int i;
1800 int prec;
1801 LITTLENUM_TYPE words [MAX_LITTLENUMS];
ebde3f62
NC
1802 char * t;
1803 char * atof_ieee ();
c8cf7e17
DE
1804
1805 switch (type)
1806 {
1807 case 'f':
1808 case 'F':
1809 case 's':
1810 case 'S':
1811 prec = 2;
1812 break;
1813
1814 case 'd':
1815 case 'D':
1816 case 'r':
1817 case 'R':
1818 prec = 4;
1819 break;
1820
1821 /* FIXME: Some targets allow other format chars for bigger sizes here. */
1822
1823 default:
ebde3f62 1824 * sizeP = 0;
48401fcf 1825 return _("Bad call to md_atof()");
c8cf7e17
DE
1826 }
1827
1828 t = atof_ieee (input_line_pointer, type, words);
1829 if (t)
1830 input_line_pointer = t;
ebde3f62 1831 * sizeP = prec * sizeof (LITTLENUM_TYPE);
c8cf7e17
DE
1832
1833 if (target_big_endian)
1834 {
1835 for (i = 0; i < prec; i++)
1836 {
ebde3f62
NC
1837 md_number_to_chars (litP, (valueT) words[i],
1838 sizeof (LITTLENUM_TYPE));
c8cf7e17
DE
1839 litP += sizeof (LITTLENUM_TYPE);
1840 }
1841 }
1842 else
1843 {
1844 for (i = prec - 1; i >= 0; i--)
1845 {
ebde3f62
NC
1846 md_number_to_chars (litP, (valueT) words[i],
1847 sizeof (LITTLENUM_TYPE));
c8cf7e17
DE
1848 litP += sizeof (LITTLENUM_TYPE);
1849 }
1850 }
1851
1852 return 0;
1853}
48401fcf
TT
1854
1855void
1856m32r_elf_section_change_hook ()
1857{
1858 /* If we have reached the end of a section and we have just emitted a
1859 16 bit insn, then emit a nop to make sure that the section ends on
1860 a 32 bit boundary. */
1861
1862 if (prev_insn.insn || seen_relaxable_p)
1863 (void) m32r_fill_insn (0);
1864}
0f829c8e
CM
1865
1866boolean
1867m32r_fix_adjustable (fixP)
1868 fixS *fixP;
1869{
1870
1871 if (fixP->fx_addsy == NULL)
1872 return 1;
1873
1874 /* Prevent all adjustments to global symbols. */
1875 if (S_IS_EXTERN (fixP->fx_addsy))
1876 return 0;
1877 if (S_IS_WEAK (fixP->fx_addsy))
1878 return 0;
1879
1880 /* We need the symbol name for the VTABLE entries */
1881 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1882 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1883 return 0;
1884
1885 return 1;
1886}
This page took 0.171912 seconds and 4 git commands to generate.