Do not bother checking the operands of instructions which have no operands!
[deliverable/binutils-gdb.git] / gas / config / tc-m32r.c
1 /* tc-m32r.c -- Assembler for the Mitsubishi M32R.
2 Copyright (C) 1996, 1997, 1998 Free Software Foundation.
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"
25 #include "cgen-opc.h"
26
27 typedef struct
28 {
29 const CGEN_INSN * insn;
30 CGEN_FIELDS fields;
31 #ifdef CGEN_INT_INSN
32 cgen_insn_t buffer [CGEN_MAX_INSN_SIZE / sizeof (cgen_insn_t)];
33 #else
34 char buffer [CGEN_MAX_INSN_SIZE];
35 #endif
36 char * addr;
37 fragS * frag;
38 int indices [MAX_OPERAND_INSTANCES];
39 }
40 m32r_insn;
41
42 /* prev_insn.insn is non-null if last insn was a 16 bit insn on a 32 bit
43 boundary (i.e. was the first of two 16 bit insns). */
44 static m32r_insn prev_insn;
45
46 /* Non-zero if we've seen a relaxable insn since the last 32 bit
47 alignment request. */
48 static int seen_relaxable_p = 0;
49
50 /* Non-zero if -relax specified, in which case sufficient relocs are output
51 for the linker to do relaxing.
52 We do simple forms of relaxing internally, but they are always done.
53 This flag does not apply to them. */
54 static int m32r_relax;
55
56 /* If non-NULL, pointer to cpu description file to read.
57 This allows runtime additions to the assembler. */
58 static char * m32r_cpu_desc;
59
60 /* start-sanitize-m32rx */
61 /* Non-zero if -m32rx has been specified, in which case support for the
62 extended M32RX instruction set should be enabled. */
63 static int enable_m32rx = 0;
64
65 /* Non-zero if the programmer should be warned when an explicit parallel
66 instruction might have constraint violations. */
67 static int warn_explicit_parallel_conflicts = 1;
68 /* end-sanitize-m32rx */
69
70 /* stuff for .scomm symbols. */
71 static segT sbss_section;
72 static asection scom_section;
73 static asymbol scom_symbol;
74
75 const char comment_chars[] = ";";
76 const char line_comment_chars[] = "#";
77 const char line_separator_chars[] = "";
78 const char EXP_CHARS[] = "eE";
79 const char FLT_CHARS[] = "dD";
80
81 /* Relocations against symbols are done in two
82 parts, with a HI relocation and a LO relocation. Each relocation
83 has only 16 bits of space to store an addend. This means that in
84 order for the linker to handle carries correctly, it must be able
85 to locate both the HI and the LO relocation. This means that the
86 relocations must appear in order in the relocation table.
87
88 In order to implement this, we keep track of each unmatched HI
89 relocation. We then sort them so that they immediately precede the
90 corresponding LO relocation. */
91
92 struct m32r_hi_fixup
93 {
94 struct m32r_hi_fixup * next; /* Next HI fixup. */
95 fixS * fixp; /* This fixup. */
96 segT seg; /* The section this fixup is in. */
97
98 };
99
100 /* The list of unmatched HI relocs. */
101
102 static struct m32r_hi_fixup * m32r_hi_fixup_list;
103
104 \f
105 /* start-sanitize-m32rx */
106 static void
107 allow_m32rx (on)
108 int on;
109 {
110 enable_m32rx = on;
111
112 if (stdoutput != NULL)
113 bfd_set_arch_mach (stdoutput, TARGET_ARCH,
114 enable_m32rx ? bfd_mach_m32rx : bfd_mach_m32r);
115 }
116 /* end-sanitize-m32rx */
117 \f
118 const char * md_shortopts = "";
119
120 struct option md_longopts[] =
121 {
122 /* start-sanitize-m32rx */
123 #define OPTION_M32RX (OPTION_MD_BASE)
124 {"m32rx", no_argument, NULL, OPTION_M32RX},
125 #define OPTION_WARN (OPTION_MD_BASE + 1)
126 {"warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_WARN},
127 #define OPTION_NO_WARN (OPTION_MD_BASE + 2)
128 {"no-warn-explicit-parallel-conflicts", no_argument, NULL, OPTION_NO_WARN},
129 /* end-sanitize-m32rx */
130
131 #if 0 /* not supported yet */
132 #define OPTION_RELAX (OPTION_MD_BASE + 3)
133 {"relax", no_argument, NULL, OPTION_RELAX},
134 #define OPTION_CPU_DESC (OPTION_MD_BASE + 4)
135 {"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
136 #endif
137
138 {NULL, no_argument, NULL, 0}
139 };
140 size_t md_longopts_size = sizeof (md_longopts);
141
142 int
143 md_parse_option (c, arg)
144 int c;
145 char * arg;
146 {
147 switch (c)
148 {
149 /* start-sanitize-m32rx */
150 case OPTION_M32RX:
151 allow_m32rx (1);
152 break;
153
154 case OPTION_WARN:
155 warn_explicit_parallel_conflicts = 1;
156 break;
157
158 case OPTION_NO_WARN:
159 warn_explicit_parallel_conflicts = 0;
160 break;
161 /* end-sanitize-m32rx */
162
163 #if 0 /* not supported yet */
164 case OPTION_RELAX:
165 m32r_relax = 1;
166 break;
167 case OPTION_CPU_DESC:
168 m32r_cpu_desc = arg;
169 break;
170 #endif
171 default:
172 return 0;
173 }
174 return 1;
175 }
176
177 void
178 md_show_usage (stream)
179 FILE * stream;
180 {
181 fprintf (stream, "M32R/X options:\n");
182 /* start-sanitize-m32rx */
183 fprintf (stream, "\
184 --m32rx support the extended m32rx instruction set\n");
185
186 fprintf (stream, "\
187 --warn-explicit-parallel-conflicts Warn when parallel instrucitons violate contraints\n");
188 fprintf (stream, "\
189 --no-warn-explicit-parallel-conflicts Do not warn when parallel instrucitons violate contraints\n");
190 /* end-sanitize-m32rx */
191
192 #if 0
193 fprintf (stream, "\
194 --relax create linker relaxable code\n");
195 fprintf (stream, "\
196 --cpu-desc provide runtime cpu description file\n");
197 #endif
198 }
199
200 static void fill_insn PARAMS ((int));
201 static void m32r_scomm PARAMS ((int));
202
203 /* Set by md_assemble for use by m32r_fill_insn. */
204 static subsegT prev_subseg;
205 static segT prev_seg;
206
207 /* The target specific pseudo-ops which we support. */
208 const pseudo_typeS md_pseudo_table[] =
209 {
210 { "word", cons, 4 },
211 { "fillinsn", fill_insn, 0 },
212 { "scomm", m32r_scomm, 0 },
213 /* start-sanitize-m32rx */
214 { "m32r", allow_m32rx, 0},
215 { "m32rx", allow_m32rx, 1},
216 /* end-sanitize-m32rx */
217 { NULL, NULL, 0 }
218 };
219
220 /* FIXME: Should be machine generated. */
221 #define NOP_INSN 0x7000
222 #define PAR_NOP_INSN 0xf000 /* can only be used in 2nd slot */
223
224 /* When we align the .text section, insert the correct NOP pattern.
225 N is the power of 2 alignment. LEN is the length of pattern FILL.
226 MAX is the maximum number of characters to skip when doing the alignment,
227 or 0 if there is no maximum. */
228
229 int
230 m32r_do_align (n, fill, len, max)
231 int n;
232 const char * fill;
233 int len;
234 int max;
235 {
236 if ((fill == NULL || (* fill == 0 && len == 1))
237 && (now_seg->flags & SEC_CODE) != 0
238 /* Only do this special handling if aligning to at least a
239 4 byte boundary. */
240 && n > 1
241 /* Only do this special handling if we're allowed to emit at
242 least two bytes. */
243 && (max == 0 || max > 1))
244 {
245 static const unsigned char nop_pattern[] = { 0xf0, 0x00 };
246
247 #if 0
248 /* First align to a 2 byte boundary, in case there is an odd .byte. */
249 /* FIXME: How much memory will cause gas to use when assembling a big
250 program? Perhaps we can avoid the frag_align call? */
251 frag_align (1, 0, 0);
252 #endif
253 /* Next align to a 4 byte boundary (we know n >= 2) using a parallel
254 nop. */
255 frag_align_pattern (2, nop_pattern, sizeof nop_pattern, 0);
256 /* If doing larger alignments use a repeating sequence of appropriate
257 nops. */
258 if (n > 2)
259 {
260 static const unsigned char multi_nop_pattern[] =
261 { 0x70, 0x00, 0xf0, 0x00 };
262 frag_align_pattern (n, multi_nop_pattern, sizeof multi_nop_pattern,
263 max ? max - 2 : 0);
264 }
265 return 1;
266 }
267
268 return 0;
269 }
270
271 static void
272 assemble_nop (opcode)
273 int opcode;
274 {
275 char * f = frag_more (2);
276 md_number_to_chars (f, opcode, 2);
277 }
278
279 /* If the last instruction was the first of 2 16 bit insns,
280 output a nop to move the PC to a 32 bit boundary.
281
282 This is done via an alignment specification since branch relaxing
283 may make it unnecessary.
284
285 Internally, we need to output one of these each time a 32 bit insn is
286 seen after an insn that is relaxable. */
287
288 static void
289 fill_insn (ignore)
290 int ignore;
291 {
292 (void) m32r_do_align (2, NULL, 0, 0);
293 prev_insn.insn = NULL;
294 seen_relaxable_p = 0;
295 }
296
297 /* Cover function to fill_insn called after a label and at end of assembly.
298
299 The result is always 1: we're called in a conditional to see if the
300 current line is a label. */
301
302 int
303 m32r_fill_insn (done)
304 int done;
305 {
306 segT seg;
307 subsegT subseg;
308
309 if (prev_seg != NULL)
310 {
311 seg = now_seg;
312 subseg = now_subseg;
313
314 subseg_set (prev_seg, prev_subseg);
315
316 fill_insn (0);
317
318 subseg_set (seg, subseg);
319 }
320
321 return 1;
322 }
323 \f
324 void
325 md_begin ()
326 {
327 flagword applicable;
328 segT seg;
329 subsegT subseg;
330
331 /* Initialize the `cgen' interface. */
332
333 /* This is a callback from cgen to gas to parse operands. */
334 cgen_parse_operand_fn = cgen_parse_operand;
335
336 /* Set the machine number and endian. */
337 CGEN_SYM (init_asm) (0 /* mach number */,
338 target_big_endian ?
339 CGEN_ENDIAN_BIG : CGEN_ENDIAN_LITTLE);
340
341 #if 0 /* not supported yet */
342 /* If a runtime cpu description file was provided, parse it. */
343 if (m32r_cpu_desc != NULL)
344 {
345 const char * errmsg;
346
347 errmsg = cgen_read_cpu_file (m32r_cpu_desc);
348 if (errmsg != NULL)
349 as_bad ("%s: %s", m32r_cpu_desc, errmsg);
350 }
351 #endif
352
353 /* Save the current subseg so we can restore it [it's the default one and
354 we don't want the initial section to be .sbss]. */
355 seg = now_seg;
356 subseg = now_subseg;
357
358 /* The sbss section is for local .scomm symbols. */
359 sbss_section = subseg_new (".sbss", 0);
360
361 /* This is copied from perform_an_assembly_pass. */
362 applicable = bfd_applicable_section_flags (stdoutput);
363 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
364
365 #if 0 /* What does this do? [see perform_an_assembly_pass] */
366 seg_info (bss_section)->bss = 1;
367 #endif
368
369 subseg_set (seg, subseg);
370
371 /* We must construct a fake section similar to bfd_com_section
372 but with the name .scommon. */
373 scom_section = bfd_com_section;
374 scom_section.name = ".scommon";
375 scom_section.output_section = & scom_section;
376 scom_section.symbol = & scom_symbol;
377 scom_section.symbol_ptr_ptr = & scom_section.symbol;
378 scom_symbol = * bfd_com_section.symbol;
379 scom_symbol.name = ".scommon";
380 scom_symbol.section = & scom_section;
381
382 /* start-sanitize-m32rx */
383 allow_m32rx (enable_m32rx);
384 /* end-sanitize-m32rx */
385 }
386
387 /* start-sanitize-m32rx */
388 #ifdef HAVE_CPU_M32RX
389
390 /* Returns true if an output of instruction 'a' is referenced by an operand
391 of instruction 'b'. If 'check_outputs' is true then b's outputs are
392 checked, otherwise its inputs are examined. */
393 static int
394 first_writes_to_seconds_operands (a, b, check_outputs)
395 m32r_insn * a;
396 m32r_insn * b;
397 const int check_outputs;
398 {
399 const CGEN_OPERAND_INSTANCE * a_operands = CGEN_INSN_OPERANDS (a->insn);
400 const CGEN_OPERAND_INSTANCE * b_operands = CGEN_INSN_OPERANDS (b->insn);
401 int a_index;
402
403 /* If at least one of the instructions take sno opeands, then there is
404 nothing to check. There really are instructions without operands,
405 eg 'nop'. */
406 if (a_operands == NULL || b_operands == NULL)
407 return 0;
408
409 /* Scan the operand list of 'a' looking for an output operand. */
410 for (a_index = 0;
411 CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END;
412 a_index ++, a_operands ++)
413 {
414 if (CGEN_OPERAND_INSTANCE_TYPE (a_operands) == CGEN_OPERAND_INSTANCE_OUTPUT)
415 {
416 int b_index;
417
418 /* Scan operand list of 'b' looking for an operand that references
419 the same hardware element, and which goes in the right direction. */
420 for (b_index = 0;
421 CGEN_OPERAND_INSTANCE_TYPE (b_operands) != CGEN_OPERAND_INSTANCE_END;
422 b_index ++, b_operands ++)
423 {
424 if ((CGEN_OPERAND_INSTANCE_TYPE (b_operands) ==
425 (check_outputs ? CGEN_OPERAND_INSTANCE_OUTPUT : CGEN_OPERAND_INSTANCE_INPUT))
426 && (CGEN_OPERAND_INSTANCE_HW (b_operands) == CGEN_OPERAND_INSTANCE_HW (a_operands))
427 && (a->indices [a_index] == b->indices [b_index]))
428 return 1;
429 }
430 }
431 }
432
433 return 0;
434 }
435
436 /* Returns true if the insn can (potentially) alter the program counter. */
437 static int
438 writes_to_pc (a)
439 m32r_insn * a;
440 {
441 #if 0
442 const CGEN_OPERAND_INSTANCE * a_operands == CGEN_INSN_OPERANDS (a->insn);
443
444 if (a_operands == NULL)
445 return 0;
446
447 while (CGEN_OPERAND_INSTANCE_TYPE (a_operands) != CGEN_OPERAND_INSTANCE_END)
448 {
449 if (CGEN_OPERAND_INSTANCE_OPERAND (a_operands) != NULL
450 && CGEN_OPERAND_INDEX (CGEN_OPERAND_INSTANCE_OPERAND (a_operands)) == M32R_OPERAND_PC)
451 return 1;
452
453 a_operands ++;
454 }
455 #else
456 if (CGEN_INSN_ATTR (a->insn, CGEN_INSN_UNCOND_CTI)
457 || CGEN_INSN_ATTR (a->insn, CGEN_INSN_COND_CTI))
458 return 1;
459 #endif
460 return 0;
461 }
462
463 /* Returns NULL if the two 16 bit insns can be executed in parallel,
464 otherwise it returns a pointer to an error message explaining why not. */
465 static const char *
466 can_make_parallel (a, b)
467 m32r_insn * a;
468 m32r_insn * b;
469 {
470 PIPE_ATTR a_pipe;
471 PIPE_ATTR b_pipe;
472
473 /* Make sure the instructions are the right length. */
474 if ( CGEN_FIELDS_BITSIZE (& a->fields) != 16
475 || CGEN_FIELDS_BITSIZE (& b->fields) != 16)
476 abort();
477
478 if (first_writes_to_seconds_operands (a, b, true))
479 return "Instructions write to the same destination register.";
480
481 a_pipe = CGEN_INSN_ATTR (a->insn, CGEN_INSN_PIPE);
482 b_pipe = CGEN_INSN_ATTR (b->insn, CGEN_INSN_PIPE);
483
484 /* Make sure that the instructions use the correct execution pipelines. */
485 if ( a_pipe == PIPE_NONE
486 || b_pipe == PIPE_NONE)
487 return "Instructions do not use parallel execution pipelines.";
488
489 /* Leave this test for last, since it is the only test that can
490 go away if the instructions are swapped, and we want to make
491 sure that any other errors are detected before this happens. */
492 if ( a_pipe == PIPE_S
493 || b_pipe == PIPE_O)
494 return "Instructions share the same execution pipeline";
495
496 return NULL;
497 }
498
499 #ifdef CGEN_INT_INSN
500 static void
501 make_parallel (buffer)
502 cgen_insn_t * buffer;
503 {
504 /* Force the top bit of the second insn to be set. */
505
506 bfd_vma value;
507
508 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
509 {
510 value = bfd_getb16 ((bfd_byte *) buffer);
511 value |= 0x8000;
512 bfd_putb16 (value, (char *) buffer);
513 }
514 else
515 {
516 value = bfd_getl16 ((bfd_byte *) buffer);
517 value |= 0x8000;
518 bfd_putl16 (value, (char *) buffer);
519 }
520 }
521 #else
522 static void
523 make_parallel (buffer)
524 char * buffer;
525 {
526 /* Force the top bit of the second insn to be set. */
527
528 buffer [CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG ? 0 : 1] |= 0x80;
529 }
530 #endif
531
532
533 static void
534 assemble_parallel_insn (str, str2)
535 char * str;
536 char * str2;
537 {
538 char * str3;
539 m32r_insn first;
540 m32r_insn second;
541 char * errmsg;
542
543 * str2 = 0; /* Seperate the two instructions. */
544
545 /* If there was a previous 16 bit insn, then fill the following 16 bit slot,
546 so that the parallel instruction will start on a 32 bit boundary. */
547 if (prev_insn.insn)
548 fill_insn (0);
549
550 /* Parse the first instruction. */
551 if (! (first.insn = CGEN_SYM (assemble_insn)
552 (str, & first.fields, first.buffer, & errmsg)))
553 {
554 as_bad (errmsg);
555 return;
556 }
557
558 /* Check to see if this is an allowable parallel insn. */
559 if (CGEN_INSN_ATTR (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
560 {
561 as_bad ("instruction '%s' cannot be executed in parallel.", str);
562 return;
563 }
564
565 if (! enable_m32rx
566 && CGEN_INSN_ATTR (first.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
567 {
568 as_bad ("instruction '%s' is for the M32RX only", str);
569 return;
570 }
571
572 *str2 = '|'; /* Restore the original assembly text, just in case it is needed. */
573 str3 = str; /* Save the original string pointer. */
574 str = str2 + 2; /* Advanced past the parsed string. */
575 str2 = str3; /* Remember the entire string in case it is needed for error messages. */
576
577 /* Preserve any fixups that have been generated and reset the list to empty. */
578 cgen_save_fixups();
579
580 /* Get the indicies of the operands of the instruction. */
581 /* FIXME: CGEN_FIELDS is already recorded, but relying on that fact
582 doesn't seem right. Perhaps allow passing fields like we do insn. */
583 /* FIXME: ALIAS insns do not have operands, so we use this function
584 to find the equivalent insn and overwrite the value stored in our
585 structure. When aliases behave differently this may have to change. */
586 first.insn = m32r_cgen_get_insn_operands (first.insn, bfd_getb16 ((char *) first.buffer), 16,
587 first.indices);
588 if (first.insn == NULL)
589 as_fatal ("internal error: m32r_cgen_get_insn_operands failed for first insn");
590
591 /* Parse the second instruction. */
592 if (! (second.insn = CGEN_SYM (assemble_insn)
593 (str, & second.fields, second.buffer, & errmsg)))
594 {
595 as_bad (errmsg);
596 return;
597 }
598
599 /* Check it. */
600 if (! enable_m32rx
601 && CGEN_INSN_ATTR (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
602 {
603 as_bad ("instruction '%s' is for the M32RX only", str);
604 return;
605 }
606
607 if (! enable_m32rx)
608 {
609 if ( strcmp (first.insn->name, "nop") != 0
610 && strcmp (second.insn->name, "nop") != 0)
611 {
612 as_bad ("'%s': only the NOP instruction can be issued in parallel on the m32r", str2);
613 return;
614 }
615 }
616
617 /* Get the indicies of the operands of the instruction. */
618 second.insn = m32r_cgen_get_insn_operands (second.insn, bfd_getb16 ((char *) second.buffer), 16,
619 second.indices);
620 if (second.insn == NULL)
621 as_fatal ("internal error: m32r_cgen_get_insn_operands failed for second insn");
622
623 /* We assume that if the first instruction writes to a register that is
624 read by the second instruction it is because the programmer intended
625 this to happen, (after all they have explicitly requested that these
626 two instructions be executed in parallel). Although if the global
627 variable warn_explicit_parallel_conflicts is true then we do generate
628 a warning message. Similarly we assume that parallel branch and jump
629 instructions are deliberate and should not produce errors. */
630
631 if (warn_explicit_parallel_conflicts)
632 {
633 if (first_writes_to_seconds_operands (& first, & second, false))
634 as_warn ("%s: output of 1st instruction is the same as an input to 2nd instruction - is this intentional ?", str2);
635
636 if (first_writes_to_seconds_operands (& second, & first, false))
637 as_warn ("%s: output of 2nd instruction is the same as an input to 1st instruction - is this intentional ?", str2);
638 }
639
640 if ((errmsg = (char *) can_make_parallel (& first, & second)) == NULL)
641 {
642 /* Get the fixups for the first instruction. */
643 cgen_swap_fixups ();
644
645 /* Write it out. */
646 (void) cgen_asm_finish_insn (first.insn, first.buffer,
647 CGEN_FIELDS_BITSIZE (& first.fields));
648
649 /* Force the top bit of the second insn to be set. */
650 make_parallel (second.buffer);
651
652 /* Get its fixups. */
653 cgen_restore_fixups ();
654
655 /* Write it out. */
656 (void) cgen_asm_finish_insn (second.insn, second.buffer,
657 CGEN_FIELDS_BITSIZE (& second.fields));
658 }
659 /* Try swapping the instructions to see if they work that way. */
660 else if (can_make_parallel (& second, & first) == NULL)
661 {
662 /* Write out the second instruction first. */
663 (void) cgen_asm_finish_insn (second.insn, second.buffer,
664 CGEN_FIELDS_BITSIZE (& second.fields));
665
666 /* Force the top bit of the first instruction to be set. */
667 make_parallel (first.buffer);
668
669 /* Get the fixups for the first instruction. */
670 cgen_restore_fixups ();
671
672 /* Write out the first instruction. */
673 (void) cgen_asm_finish_insn (first.insn, first.buffer,
674 CGEN_FIELDS_BITSIZE (& first.fields));
675 }
676 else
677 {
678 as_bad ("'%s': %s", str2, errmsg);
679 return;
680 }
681
682 /* Set these so m32r_fill_insn can use them. */
683 prev_seg = now_seg;
684 prev_subseg = now_subseg;
685
686 return;
687 }
688
689 #endif /* HAVE_CPU_M32RX */
690
691 /* end-sanitize-m32rx */
692
693
694 void
695 md_assemble (str)
696 char * str;
697 {
698 m32r_insn insn;
699 char * errmsg;
700 char * str2 = NULL;
701
702 /* Initialize GAS's cgen interface for a new instruction. */
703 cgen_asm_init_parse ();
704
705 /* start-sanitize-m32rx */
706 #ifdef HAVE_CPU_M32RX
707 /* Look for a parallel instruction seperator. */
708 if ((str2 = strstr (str, "||")) != NULL)
709 {
710 assemble_parallel_insn (str, str2);
711 return;
712 }
713 #endif
714 /* end-sanitize-m32rx */
715
716 insn.insn = CGEN_SYM (assemble_insn) (str, & insn.fields, insn.buffer, & errmsg);
717 if (!insn.insn)
718 {
719 as_bad (errmsg);
720 return;
721 }
722
723 /* start-sanitize-m32rx */
724 #ifdef HAVE_CPU_M32RX
725 if (! enable_m32rx && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
726 {
727 as_bad ("instruction '%s' is for the M32RX only", str);
728 return;
729 }
730 #endif
731 /* end-sanitize-m32rx */
732
733 if (CGEN_INSN_BITSIZE (insn.insn) == 32)
734 {
735 /* 32 bit insns must live on 32 bit boundaries. */
736 if (prev_insn.insn || seen_relaxable_p)
737 {
738 /* FIXME: If calling fill_insn too many times turns us into a memory
739 pig, can we call assemble_nop instead of !seen_relaxable_p? */
740 fill_insn (0);
741 }
742
743 (void) cgen_asm_finish_insn (insn.insn, insn.buffer,
744 CGEN_FIELDS_BITSIZE (& insn.fields));
745 }
746 else
747 {
748 /* start-sanitize-m32rx */
749 /* start-sanitize-phase2-m32rx */
750 int swap = false;
751 /* end-sanitize-phase2-m32rx */
752 /* end-sanitize-m32rx */
753
754 if (CGEN_INSN_BITSIZE (insn.insn) != 16)
755 abort();
756
757 /* Get the indicies of the operands of the instruction. */
758 insn.insn = m32r_cgen_get_insn_operands (insn.insn,
759 bfd_getb16 ((char *) insn.buffer),
760 16,
761 insn.indices);
762 if (insn.insn == NULL)
763 as_fatal ("internal error: m32r_cgen_get_insn_operands failed");
764
765 /* Keep track of whether we've seen a pair of 16 bit insns.
766 prev_insn.insn is NULL when we're on a 32 bit boundary. */
767 if (prev_insn.insn)
768 {
769 /* start-sanitize-m32rx */
770 /* start-sanitize-phase2-m32rx */
771 #ifdef HAVE_CPU_M32RX
772 /* Look to see if this instruction can be combined with the
773 previous instruction to make one, parallel, 32 bit instruction.
774 If the previous instruction (potentially) changed the flow of
775 program control, then it cannot be combined with the current
776 instruction. Also if the output of the previous instruction
777 is used as an input to the current instruction then it cannot
778 be combined. Otherwise call can_make_parallel() with both
779 orderings of the instructions to see if they can be combined. */
780 if (! writes_to_pc (& prev_insn)
781 && ! first_writes_to_seconds_operands (& prev_insn, &insn, false)
782 )
783 {
784 if (can_make_parallel (& prev_insn, & insn) == NULL)
785 make_parallel (insn.buffer);
786 else if (can_make_parallel (& insn, & prev_insn.insn) == NULL)
787 swap = true;
788 }
789 #endif
790 /* end-sanitize-phase2-m32rx */
791 /* end-sanitize-m32rx */
792
793 prev_insn.insn = NULL;
794 }
795 else
796 {
797 prev_insn = insn;
798 }
799
800 /* Record the frag that might be used by this insn. */
801 insn.frag = frag_now;
802 insn.addr = cgen_asm_finish_insn (insn.insn, insn.buffer,
803 CGEN_FIELDS_BITSIZE (& insn.fields));
804
805 /* start-sanitize-m32rx */
806 /* start-sanitize-phase2-m32rx */
807 #ifdef HAVE_CPU_M32RX
808 if (swap)
809 {
810 int tmp;
811
812 #define SWAP_BYTES(a,b) tmp = a; a = b; b = tmp
813
814 /* Swap the two insns */
815 SWAP_BYTES (prev_insn.addr [0], insn.addr [0]);
816 SWAP_BYTES (prev_insn.addr [1], insn.addr [1]);
817
818 make_parallel (insn.addr);
819
820 /* Swap any relaxable frags recorded for the two insns. */
821 if (prev_insn.frag->fr_opcode == prev_insn.addr)
822 {
823 prev_insn.frag->fr_opcode = insn.addr;
824 }
825 else if (insn.frag->fr_opcode == insn.addr)
826 {
827 insn.frag->fr_opcode = prev_insn.addr;
828 }
829 }
830 /* end-sanitize-phase2-m32rx */
831
832 /* Record where this instruction was assembled. */
833 prev_insn.addr = insn.addr;
834 prev_insn.frag = insn.frag;
835 #endif
836 /* end-sanitize-m32rx */
837
838 /* If the insn needs the following one to be on a 32 bit boundary
839 (e.g. subroutine calls), fill this insn's slot. */
840 if (prev_insn.insn
841 && CGEN_INSN_ATTR (insn.insn, CGEN_INSN_FILL_SLOT) != 0)
842 fill_insn (0);
843
844 /* If this is a relaxable insn (can be replaced with a larger version)
845 mark the fact so that we can emit an alignment directive for a
846 following 32 bit insn if we see one. */
847 if (CGEN_INSN_ATTR (insn.insn, CGEN_INSN_RELAXABLE) != 0)
848 seen_relaxable_p = 1;
849 }
850
851 /* Set these so m32r_fill_insn can use them. */
852 prev_seg = now_seg;
853 prev_subseg = now_subseg;
854 }
855
856 /* The syntax in the manual says constants begin with '#'.
857 We just ignore it. */
858
859 void
860 md_operand (expressionP)
861 expressionS * expressionP;
862 {
863 if (* input_line_pointer == '#')
864 {
865 input_line_pointer ++;
866 expression (expressionP);
867 }
868 }
869
870 valueT
871 md_section_align (segment, size)
872 segT segment;
873 valueT size;
874 {
875 int align = bfd_get_section_alignment (stdoutput, segment);
876 return ((size + (1 << align) - 1) & (-1 << align));
877 }
878
879 symbolS *
880 md_undefined_symbol (name)
881 char * name;
882 {
883 return 0;
884 }
885 \f
886 /* .scomm pseudo-op handler.
887
888 This is a new pseudo-op to handle putting objects in .scommon.
889 By doing this the linker won't need to do any work and more importantly
890 it removes the implicit -G arg necessary to correctly link the object file.
891 */
892
893 static void
894 m32r_scomm (ignore)
895 int ignore;
896 {
897 register char * name;
898 register char c;
899 register char * p;
900 offsetT size;
901 register symbolS * symbolP;
902 offsetT align;
903 int align2;
904
905 name = input_line_pointer;
906 c = get_symbol_end ();
907
908 /* just after name is now '\0' */
909 p = input_line_pointer;
910 * p = c;
911 SKIP_WHITESPACE ();
912 if (* input_line_pointer != ',')
913 {
914 as_bad ("Expected comma after symbol-name: rest of line ignored.");
915 ignore_rest_of_line ();
916 return;
917 }
918
919 input_line_pointer ++; /* skip ',' */
920 if ((size = get_absolute_expression ()) < 0)
921 {
922 as_warn (".SCOMMon length (%ld.) <0! Ignored.", (long) size);
923 ignore_rest_of_line ();
924 return;
925 }
926
927 /* The third argument to .scomm is the alignment. */
928 if (* input_line_pointer != ',')
929 align = 8;
930 else
931 {
932 ++ input_line_pointer;
933 align = get_absolute_expression ();
934 if (align <= 0)
935 {
936 as_warn ("ignoring bad alignment");
937 align = 8;
938 }
939 }
940 /* Convert to a power of 2 alignment. */
941 if (align)
942 {
943 for (align2 = 0; (align & 1) == 0; align >>= 1, ++ align2)
944 continue;
945 if (align != 1)
946 {
947 as_bad ("Common alignment not a power of 2");
948 ignore_rest_of_line ();
949 return;
950 }
951 }
952 else
953 align2 = 0;
954
955 * p = 0;
956 symbolP = symbol_find_or_make (name);
957 * p = c;
958
959 if (S_IS_DEFINED (symbolP))
960 {
961 as_bad ("Ignoring attempt to re-define symbol `%s'.",
962 S_GET_NAME (symbolP));
963 ignore_rest_of_line ();
964 return;
965 }
966
967 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
968 {
969 as_bad ("Length of .scomm \"%s\" is already %ld. Not changed to %ld.",
970 S_GET_NAME (symbolP),
971 (long) S_GET_VALUE (symbolP),
972 (long) size);
973
974 ignore_rest_of_line ();
975 return;
976 }
977
978 if (symbolP->local)
979 {
980 segT old_sec = now_seg;
981 int old_subsec = now_subseg;
982 char * pfrag;
983
984 record_alignment (sbss_section, align2);
985 subseg_set (sbss_section, 0);
986
987 if (align2)
988 frag_align (align2, 0, 0);
989
990 if (S_GET_SEGMENT (symbolP) == sbss_section)
991 symbolP->sy_frag->fr_symbol = 0;
992
993 symbolP->sy_frag = frag_now;
994
995 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
996 (char *) 0);
997 * pfrag = 0;
998 S_SET_SIZE (symbolP, size);
999 S_SET_SEGMENT (symbolP, sbss_section);
1000 S_CLEAR_EXTERNAL (symbolP);
1001 subseg_set (old_sec, old_subsec);
1002 }
1003 else
1004 {
1005 S_SET_VALUE (symbolP, (valueT) size);
1006 S_SET_ALIGN (symbolP, align2);
1007 S_SET_EXTERNAL (symbolP);
1008 S_SET_SEGMENT (symbolP, & scom_section);
1009 }
1010
1011 demand_empty_rest_of_line ();
1012 }
1013 \f
1014 /* Interface to relax_segment. */
1015
1016 /* FIXME: Build table by hand, get it working, then machine generate. */
1017
1018 const relax_typeS md_relax_table[] =
1019 {
1020 /* The fields are:
1021 1) most positive reach of this state,
1022 2) most negative reach of this state,
1023 3) how many bytes this mode will add to the size of the current frag
1024 4) which index into the table to try if we can't fit into this one. */
1025
1026 /* The first entry must be unused because an `rlx_more' value of zero ends
1027 each list. */
1028 {1, 1, 0, 0},
1029
1030 /* The displacement used by GAS is from the end of the 2 byte insn,
1031 so we subtract 2 from the following. */
1032 /* 16 bit insn, 8 bit disp -> 10 bit range.
1033 This doesn't handle a branch in the right slot at the border:
1034 the "& -4" isn't taken into account. It's not important enough to
1035 complicate things over it, so we subtract an extra 2 (or + 2 in -ve
1036 case). */
1037 {511 - 2 - 2, -512 - 2 + 2, 0, 2 },
1038 /* 32 bit insn, 24 bit disp -> 26 bit range. */
1039 {0x2000000 - 1 - 2, -0x2000000 - 2, 2, 0 },
1040 /* Same thing, but with leading nop for alignment. */
1041 {0x2000000 - 1 - 2, -0x2000000 - 2, 4, 0 }
1042 };
1043
1044 long
1045 m32r_relax_frag (fragP, stretch)
1046 fragS * fragP;
1047 long stretch;
1048 {
1049 /* Address of branch insn. */
1050 long address = fragP->fr_address + fragP->fr_fix - 2;
1051 long growth = 0;
1052
1053 /* Keep 32 bit insns aligned on 32 bit boundaries. */
1054 if (fragP->fr_subtype == 2)
1055 {
1056 if ((address & 3) != 0)
1057 {
1058 fragP->fr_subtype = 3;
1059 growth = 2;
1060 }
1061 }
1062 else if (fragP->fr_subtype == 3)
1063 {
1064 if ((address & 3) == 0)
1065 {
1066 fragP->fr_subtype = 2;
1067 growth = -2;
1068 }
1069 }
1070 else
1071 {
1072 growth = relax_frag (fragP, stretch);
1073
1074 /* Long jump on odd halfword boundary? */
1075 if (fragP->fr_subtype == 2 && (address & 3) != 0)
1076 {
1077 fragP->fr_subtype = 3;
1078 growth += 2;
1079 }
1080 }
1081
1082 return growth;
1083 }
1084
1085 /* Return an initial guess of the length by which a fragment must grow to
1086 hold a branch to reach its destination.
1087 Also updates fr_type/fr_subtype as necessary.
1088
1089 Called just before doing relaxation.
1090 Any symbol that is now undefined will not become defined.
1091 The guess for fr_var is ACTUALLY the growth beyond fr_fix.
1092 Whatever we do to grow fr_fix or fr_var contributes to our returned value.
1093 Although it may not be explicit in the frag, pretend fr_var starts with a
1094 0 value. */
1095
1096 int
1097 md_estimate_size_before_relax (fragP, segment)
1098 fragS * fragP;
1099 segT segment;
1100 {
1101 int old_fr_fix = fragP->fr_fix;
1102 char * opcode = fragP->fr_opcode;
1103
1104 /* The only thing we have to handle here are symbols outside of the
1105 current segment. They may be undefined or in a different segment in
1106 which case linker scripts may place them anywhere.
1107 However, we can't finish the fragment here and emit the reloc as insn
1108 alignment requirements may move the insn about. */
1109
1110 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
1111 {
1112 /* The symbol is undefined in this segment.
1113 Change the relaxation subtype to the max allowable and leave
1114 all further handling to md_convert_frag. */
1115 fragP->fr_subtype = 2;
1116
1117 #if 0 /* Can't use this, but leave in for illustration. */
1118 /* Change 16 bit insn to 32 bit insn. */
1119 opcode[0] |= 0x80;
1120
1121 /* Increase known (fixed) size of fragment. */
1122 fragP->fr_fix += 2;
1123
1124 /* Create a relocation for it. */
1125 fix_new (fragP, old_fr_fix, 4,
1126 fragP->fr_symbol,
1127 fragP->fr_offset, 1 /* pcrel */,
1128 /* FIXME: Can't use a real BFD reloc here.
1129 cgen_md_apply_fix3 can't handle it. */
1130 BFD_RELOC_M32R_26_PCREL);
1131
1132 /* Mark this fragment as finished. */
1133 frag_wane (fragP);
1134 #else
1135 {
1136 const CGEN_INSN * insn;
1137 int i;
1138
1139 /* Update the recorded insn.
1140 Fortunately we don't have to look very far.
1141 FIXME: Change this to record in the instruction the next higher
1142 relaxable insn to use. */
1143 for (i = 0, insn = fragP->fr_cgen.insn; i < 4; i++, insn++)
1144 {
1145 if ((strcmp (CGEN_INSN_MNEMONIC (insn),
1146 CGEN_INSN_MNEMONIC (fragP->fr_cgen.insn))
1147 == 0)
1148 && CGEN_INSN_ATTR (insn, CGEN_INSN_RELAX))
1149 break;
1150 }
1151 if (i == 4)
1152 abort ();
1153
1154 fragP->fr_cgen.insn = insn;
1155 return 2;
1156 }
1157 #endif
1158 }
1159
1160 return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
1161 }
1162
1163 /* *fragP has been relaxed to its final size, and now needs to have
1164 the bytes inside it modified to conform to the new size.
1165
1166 Called after relaxation is finished.
1167 fragP->fr_type == rs_machine_dependent.
1168 fragP->fr_subtype is the subtype of what the address relaxed to. */
1169
1170 void
1171 md_convert_frag (abfd, sec, fragP)
1172 bfd * abfd;
1173 segT sec;
1174 fragS * fragP;
1175 {
1176 char * opcode;
1177 char * displacement;
1178 int target_address;
1179 int opcode_address;
1180 int extension;
1181 int addend;
1182
1183 opcode = fragP->fr_opcode;
1184
1185 /* Address opcode resides at in file space. */
1186 opcode_address = fragP->fr_address + fragP->fr_fix - 2;
1187
1188 switch (fragP->fr_subtype)
1189 {
1190 case 1 :
1191 extension = 0;
1192 displacement = & opcode[1];
1193 break;
1194 case 2 :
1195 opcode[0] |= 0x80;
1196 extension = 2;
1197 displacement = & opcode[1];
1198 break;
1199 case 3 :
1200 opcode[2] = opcode[0] | 0x80;
1201 md_number_to_chars (opcode, PAR_NOP_INSN, 2);
1202 opcode_address += 2;
1203 extension = 4;
1204 displacement = & opcode[3];
1205 break;
1206 default :
1207 abort ();
1208 }
1209
1210 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1211 {
1212 /* symbol must be resolved by linker */
1213 if (fragP->fr_offset & 3)
1214 as_warn ("Addend to unresolved symbol not on word boundary.");
1215 addend = fragP->fr_offset >> 2;
1216 }
1217 else
1218 {
1219 /* Address we want to reach in file space. */
1220 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
1221 target_address += fragP->fr_symbol->sy_frag->fr_address;
1222 addend = (target_address - (opcode_address & -4)) >> 2;
1223 }
1224
1225 /* Create a relocation for symbols that must be resolved by the linker.
1226 Otherwise output the completed insn. */
1227
1228 if (S_GET_SEGMENT (fragP->fr_symbol) != sec)
1229 {
1230 assert (fragP->fr_subtype != 1);
1231 assert (fragP->fr_cgen.insn != 0);
1232 cgen_record_fixup (fragP,
1233 /* Offset of branch insn in frag. */
1234 fragP->fr_fix + extension - 4,
1235 fragP->fr_cgen.insn,
1236 4 /*length*/,
1237 /* FIXME: quick hack */
1238 #if 0
1239 CGEN_OPERAND_ENTRY (fragP->fr_cgen.opindex),
1240 #else
1241 CGEN_OPERAND_ENTRY (M32R_OPERAND_DISP24),
1242 #endif
1243 fragP->fr_cgen.opinfo,
1244 fragP->fr_symbol, fragP->fr_offset);
1245 }
1246
1247 #define SIZE_FROM_RELAX_STATE(n) ((n) == 1 ? 1 : 3)
1248
1249 md_number_to_chars (displacement, (valueT) addend,
1250 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
1251
1252 fragP->fr_fix += extension;
1253 }
1254 \f
1255 /* Functions concerning relocs. */
1256
1257 /* The location from which a PC relative jump should be calculated,
1258 given a PC relative reloc. */
1259
1260 long
1261 md_pcrel_from_section (fixP, sec)
1262 fixS * fixP;
1263 segT sec;
1264 {
1265 if (fixP->fx_addsy != (symbolS *) NULL
1266 && (! S_IS_DEFINED (fixP->fx_addsy)
1267 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
1268 {
1269 /* The symbol is undefined (or is defined but not in this section).
1270 Let the linker figure it out. */
1271 return 0;
1272 }
1273
1274 return (fixP->fx_frag->fr_address + fixP->fx_where) & -4L;
1275 }
1276
1277 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
1278 Returns BFD_RELOC_NONE if no reloc type can be found.
1279 *FIXP may be modified if desired. */
1280
1281 bfd_reloc_code_real_type
1282 CGEN_SYM (lookup_reloc) (insn, operand, fixP)
1283 const CGEN_INSN * insn;
1284 const CGEN_OPERAND * operand;
1285 fixS * fixP;
1286 {
1287 switch (CGEN_OPERAND_TYPE (operand))
1288 {
1289 case M32R_OPERAND_DISP8 : return BFD_RELOC_M32R_10_PCREL;
1290 case M32R_OPERAND_DISP16 : return BFD_RELOC_M32R_18_PCREL;
1291 case M32R_OPERAND_DISP24 : return BFD_RELOC_M32R_26_PCREL;
1292 case M32R_OPERAND_UIMM24 : return BFD_RELOC_M32R_24;
1293 case M32R_OPERAND_HI16 :
1294 case M32R_OPERAND_SLO16 :
1295 case M32R_OPERAND_ULO16 :
1296 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1297 if (fixP->tc_fix_data.opinfo != 0)
1298 return fixP->tc_fix_data.opinfo;
1299 break;
1300 }
1301 return BFD_RELOC_NONE;
1302 }
1303
1304 /* Record a HI16 reloc for later matching with its LO16 cousin. */
1305
1306 static void
1307 m32r_record_hi16 (reloc_type, fixP, seg)
1308 int reloc_type;
1309 fixS * fixP;
1310 segT seg;
1311 {
1312 struct m32r_hi_fixup * hi_fixup;
1313
1314 assert (reloc_type == BFD_RELOC_M32R_HI16_SLO
1315 || reloc_type == BFD_RELOC_M32R_HI16_ULO);
1316
1317 hi_fixup = ((struct m32r_hi_fixup *)
1318 xmalloc (sizeof (struct m32r_hi_fixup)));
1319 hi_fixup->fixp = fixP;
1320 hi_fixup->seg = now_seg;
1321 hi_fixup->next = m32r_hi_fixup_list;
1322
1323 m32r_hi_fixup_list = hi_fixup;
1324 }
1325
1326 /* Called while parsing an instruction to create a fixup.
1327 We need to check for HI16 relocs and queue them up for later sorting. */
1328
1329 fixS *
1330 m32r_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
1331 fragS * frag;
1332 int where;
1333 const CGEN_INSN * insn;
1334 int length;
1335 const CGEN_OPERAND * operand;
1336 int opinfo;
1337 expressionS * exp;
1338 {
1339 fixS * fixP = cgen_record_fixup_exp (frag, where, insn, length,
1340 operand, opinfo, exp);
1341
1342 switch (CGEN_OPERAND_TYPE (operand))
1343 {
1344 case M32R_OPERAND_HI16 :
1345 /* If low/high/shigh/sda was used, it is recorded in `opinfo'. */
1346 if (fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_SLO
1347 || fixP->tc_fix_data.opinfo == BFD_RELOC_M32R_HI16_ULO)
1348 m32r_record_hi16 (fixP->tc_fix_data.opinfo, fixP, now_seg);
1349 break;
1350 }
1351
1352 return fixP;
1353 }
1354
1355 /* Return BFD reloc type from opinfo field in a fixS.
1356 It's tricky using fx_r_type in m32r_frob_file because the values
1357 are BFD_RELOC_UNUSED + operand number. */
1358 #define FX_OPINFO_R_TYPE(f) ((f)->tc_fix_data.opinfo)
1359
1360 /* Sort any unmatched HI16 relocs so that they immediately precede
1361 the corresponding LO16 reloc. This is called before md_apply_fix and
1362 tc_gen_reloc. */
1363
1364 void
1365 m32r_frob_file ()
1366 {
1367 struct m32r_hi_fixup * l;
1368
1369 for (l = m32r_hi_fixup_list; l != NULL; l = l->next)
1370 {
1371 segment_info_type * seginfo;
1372 int pass;
1373
1374 assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_SLO
1375 || FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_M32R_HI16_ULO);
1376
1377 /* Check quickly whether the next fixup happens to be a matching low. */
1378 if (l->fixp->fx_next != NULL
1379 && FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_M32R_LO16
1380 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
1381 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
1382 continue;
1383
1384 /* Look through the fixups for this segment for a matching `low'.
1385 When we find one, move the high/shigh just in front of it. We do
1386 this in two passes. In the first pass, we try to find a
1387 unique `low'. In the second pass, we permit multiple high's
1388 relocs for a single `low'. */
1389 seginfo = seg_info (l->seg);
1390 for (pass = 0; pass < 2; pass++)
1391 {
1392 fixS * f;
1393 fixS * prev;
1394
1395 prev = NULL;
1396 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
1397 {
1398 /* Check whether this is a `low' fixup which matches l->fixp. */
1399 if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_M32R_LO16
1400 && f->fx_addsy == l->fixp->fx_addsy
1401 && f->fx_offset == l->fixp->fx_offset
1402 && (pass == 1
1403 || prev == NULL
1404 || (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_SLO
1405 && FX_OPINFO_R_TYPE (prev) != BFD_RELOC_M32R_HI16_ULO)
1406 || prev->fx_addsy != f->fx_addsy
1407 || prev->fx_offset != f->fx_offset))
1408 {
1409 fixS ** pf;
1410
1411 /* Move l->fixp before f. */
1412 for (pf = &seginfo->fix_root;
1413 * pf != l->fixp;
1414 pf = & (* pf)->fx_next)
1415 assert (* pf != NULL);
1416
1417 * pf = l->fixp->fx_next;
1418
1419 l->fixp->fx_next = f;
1420 if (prev == NULL)
1421 seginfo->fix_root = l->fixp;
1422 else
1423 prev->fx_next = l->fixp;
1424
1425 break;
1426 }
1427
1428 prev = f;
1429 }
1430
1431 if (f != NULL)
1432 break;
1433
1434 if (pass == 1)
1435 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
1436 "Unmatched high/shigh reloc");
1437 }
1438 }
1439 }
1440
1441 /* See whether we need to force a relocation into the output file.
1442 This is used to force out switch and PC relative relocations when
1443 relaxing. */
1444
1445 int
1446 m32r_force_relocation (fix)
1447 fixS * fix;
1448 {
1449 if (! m32r_relax)
1450 return 0;
1451
1452 return (fix->fx_pcrel
1453 || 0 /* ??? */);
1454 }
1455 \f
1456 /* Write a value out to the object file, using the appropriate endianness. */
1457
1458 void
1459 md_number_to_chars (buf, val, n)
1460 char * buf;
1461 valueT val;
1462 int n;
1463 {
1464 if (target_big_endian)
1465 number_to_chars_bigendian (buf, val, n);
1466 else
1467 number_to_chars_littleendian (buf, val, n);
1468 }
1469
1470 /* Turn a string in input_line_pointer into a floating point constant of type
1471 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1472 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1473 */
1474
1475 /* Equal to MAX_PRECISION in atof-ieee.c */
1476 #define MAX_LITTLENUMS 6
1477
1478 char *
1479 md_atof (type, litP, sizeP)
1480 char type;
1481 char *litP;
1482 int *sizeP;
1483 {
1484 int i;
1485 int prec;
1486 LITTLENUM_TYPE words [MAX_LITTLENUMS];
1487 LITTLENUM_TYPE * wordP;
1488 char * t;
1489 char * atof_ieee ();
1490
1491 switch (type)
1492 {
1493 case 'f':
1494 case 'F':
1495 case 's':
1496 case 'S':
1497 prec = 2;
1498 break;
1499
1500 case 'd':
1501 case 'D':
1502 case 'r':
1503 case 'R':
1504 prec = 4;
1505 break;
1506
1507 /* FIXME: Some targets allow other format chars for bigger sizes here. */
1508
1509 default:
1510 * sizeP = 0;
1511 return "Bad call to md_atof()";
1512 }
1513
1514 t = atof_ieee (input_line_pointer, type, words);
1515 if (t)
1516 input_line_pointer = t;
1517 * sizeP = prec * sizeof (LITTLENUM_TYPE);
1518
1519 if (target_big_endian)
1520 {
1521 for (i = 0; i < prec; i++)
1522 {
1523 md_number_to_chars (litP, (valueT) words[i],
1524 sizeof (LITTLENUM_TYPE));
1525 litP += sizeof (LITTLENUM_TYPE);
1526 }
1527 }
1528 else
1529 {
1530 for (i = prec - 1; i >= 0; i--)
1531 {
1532 md_number_to_chars (litP, (valueT) words[i],
1533 sizeof (LITTLENUM_TYPE));
1534 litP += sizeof (LITTLENUM_TYPE);
1535 }
1536 }
1537
1538 return 0;
1539 }
This page took 0.078082 seconds and 5 git commands to generate.