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