This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / gas / config / tc-h8300.c
index 1bb869985e86d5b24b6350f3140a15c7a60e26b0..161337ce2531c53cb773d8a6c62941210bffbcbd 100644 (file)
@@ -1,5 +1,6 @@
 /* tc-h8300.c -- Assemble code for the Hitachi H8/300
-   Copyright (C) 1991, 1992 Free Software Foundation.
+   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 2000
+   Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
 
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with GAS; see the file COPYING.  If not, write to
-   the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   along with GAS; see the file COPYING.  If not, write to the Free
+   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.  */
 
-
-/*
-  Written By Steve Chamberlain
-  sac@cygnus.com
-  */
+/* Written By Steve Chamberlain <sac@cygnus.com>.  */
 
 #include <stdio.h>
 #include "as.h"
+#include "subsegs.h"
 #include "bfd.h"
 #define DEFINE_TABLE
 #define h8_opcodes ops
 #include "opcode/h8300.h"
 #include <ctype.h>
 
-const char comment_chars[] =
-{';', 0};
-const char line_separator_chars[] =
-{0};
+const char comment_chars[] = ";";
 const char line_comment_chars[] = "#";
+const char line_separator_chars[] = "";
 
 /* This table describes all the machine specific pseudo-ops the assembler
    has to support.  The fields are:
@@ -47,32 +44,26 @@ const char line_comment_chars[] = "#";
 void cons ();
 
 int Hmode;
-/* start-sanitize-h8s */
 int Smode;
-/* end-sanitize-h8s */
 #define PSIZE (Hmode ? L_32 : L_16)
 #define DMODE (L_16)
 #define DSYMMODE (Hmode ? L_24 : L_16)
 int bsize = L_8;               /* default branch displacement */
 
-
 void
 h8300hmode ()
 {
   Hmode = 1;
-/* start-sanitize-h8s */
   Smode = 0;
-/* end-sanitize-h8s */
 }
 
-/* start-sanitize-h8s */
 void
 h8300smode ()
 {
   Smode = 1;
   Hmode = 1;
 }
-/* end-sanitize-h8s */
+
 void
 sbranch (size)
      int size;
@@ -80,18 +71,16 @@ sbranch (size)
   bsize = size;
 }
 
-static void pint ()
+static void
+pint ()
 {
   cons (Hmode ? 4 : 2);
 }
 
 const pseudo_typeS md_pseudo_table[] =
 {
-
   {"h8300h", h8300hmode, 0},
-/* start-sanitize-h8s */
   {"h8300s", h8300smode, 0},
-/* end-sanitize-h8s */
   {"sbranch", sbranch, L_8},
   {"lbranch", sbranch, L_16},
 
@@ -118,12 +107,9 @@ const char FLT_CHARS[] = "rRsSfFdDxXpP";
 
 static struct hash_control *opcode_hash_control;       /* Opcode mnemonics */
 
-/*
-  This function is called once, at assembler startup time.  This should
-  set up all the tables, etc that the MD part of the assembler needs
-  */
-
-
+/* This function is called once, at assembler startup time.  This
+   should set up all the tables, etc. that the MD part of the assembler
+   needs.  */
 void
 md_begin ()
 {
@@ -137,8 +123,7 @@ md_begin ()
   for (opcode = h8_opcodes; opcode->name; opcode++)
     {
       /* Strip off any . part when inserting the opcode and only enter
-         unique codes into the hash table
-         */
+         unique codes into the hash table.  */
       char *src = opcode->name;
       unsigned int len = strlen (src);
       char *dst = malloc (len + 1);
@@ -164,12 +149,12 @@ md_begin ()
        }
       opcode->idx = idx;
 
-
-      /* Find the number of operands */
+      /* Find the number of operands.  */
       opcode->noperands = 0;
       while (opcode->args.nib[opcode->noperands] != E)
        opcode->noperands++;
-      /* Find the length of the opcode in bytes */
+
+      /* Find the length of the opcode in bytes.  */
       opcode->length = 0;
       while (opcode->data.nib[opcode->length * 2] != E)
        opcode->length++;
@@ -178,17 +163,16 @@ md_begin ()
   linkrelax = 1;
 }
 
-
 struct h8_exp
 {
   char *e_beg;
   char *e_end;
   expressionS e_exp;
 };
+
 int dispreg;
 int opsize;                    /* Set when a register size is seen */
 
-
 struct h8_op
 {
   op_type mode;
@@ -204,11 +188,12 @@ struct h8_op
   @WREG+
   @-WREG
   #const
+  ccr
+*/
 
-  */
+/* Try to parse a reg name.  Return the number of chars consumed.  */
 
-/* try and parse a reg name, returns number of chars consumed */
-int
+static int
 parse_reg (src, mode, reg, direction)
      char *src;
      op_type *mode;
@@ -216,81 +201,91 @@ parse_reg (src, mode, reg, direction)
      int direction;
 
 {
-  if (src[0] == 's' && src[1] == 'p')
+  char *end;
+  int len;
+
+  /* Cribbed from get_symbol_end.  */
+  if (!is_name_beginner (*src) || *src == '\001')
+    return 0;
+  end = src + 1;
+  while (is_part_of_name (*end) || *end == '\001')
+    end++;
+  len = end - src;
+
+  if (len == 2 && src[0] == 's' && src[1] == 'p')
     {
       *mode = PSIZE | REG | direction;
       *reg = 7;
-      return 2;
+      return len;
     }
-  if (src[0] == 'c' && src[1] == 'c' && src[2] == 'r')
+  if (len == 3 && src[0] == 'c' && src[1] == 'c' && src[2] == 'r')
     {
       *mode = CCR;
       *reg = 0;
-      return 3;
+      return len;
     }
-/* start-sanitize-h8s */
-  if (src[0] == 'e' && src[1] == 'x' && src[2] == 'r')
+  if (len == 3 && src[0] == 'e' && src[1] == 'x' && src[2] == 'r')
     {
       *mode = EXR;
       *reg = 0;
-      return 3;
+      return len;
     }
-/* end-sanitize-h8s */
-  if (src[0] == 'f' && src[1] == 'p')
+  if (len == 2 && src[0] == 'f' && src[1] == 'p')
     {
       *mode = PSIZE | REG | direction;
       *reg = 6;
-      return 2;
+      return len;
     }
-  if (src[0] == 'e'
-      && src[1] == 'r'
+  if (len == 3 && src[0] == 'e' && src[1] == 'r'
       && src[2] >= '0' && src[2] <= '7')
     {
       *mode = L_32 | REG | direction;
       *reg = src[2] - '0';
       if (!Hmode)
-       as_warn ("Reg not valid for H8/300");
-
-      return 3;
+       as_warn (_("Reg not valid for H8/300"));
+      return len;
     }
-  if (src[0] == 'e'
-      && src[1] >= '0' && src[1] <= '7')
+  if (len == 2 && src[0] == 'e' && src[1] >= '0' && src[1] <= '7')
     {
       *mode = L_16 | REG | direction;
       *reg = src[1] - '0' + 8;
       if (!Hmode)
-       as_warn ("Reg not valid for H8/300");
-      return 2;
+       as_warn (_("Reg not valid for H8/300"));
+      return len;
     }
 
   if (src[0] == 'r')
     {
       if (src[1] >= '0' && src[1] <= '7')
        {
-         if (src[2] == 'l')
+         if (len == 3 && src[2] == 'l')
            {
              *mode = L_8 | REG | direction;
              *reg = (src[1] - '0') + 8;
-             return 3;
+             return len;
            }
-         if (src[2] == 'h')
+         if (len == 3 && src[2] == 'h')
            {
              *mode = L_8 | REG | direction;
              *reg = (src[1] - '0');
-             return 3;
+             return len;
+           }
+         if (len == 2)
+           {
+             *mode = L_16 | REG | direction;
+             *reg = (src[1] - '0');
+             return len;
            }
-         *mode = L_16 | REG | direction;
-         *reg = (src[1] - '0');
-         return 2;
        }
     }
+
   return 0;
 }
 
-char *
+static char *
 parse_exp (s, op)
      char *s;
-     expressionS * op;
+     expressionS *op;
 {
   char *save = input_line_pointer;
   char *new;
@@ -298,7 +293,7 @@ parse_exp (s, op)
   input_line_pointer = s;
   expression (op);
   if (op->X_op == O_absent)
-    as_bad ("missing operand");
+    as_bad (_("missing operand"));
   new = input_line_pointer;
   input_line_pointer = save;
   return new;
@@ -307,7 +302,7 @@ parse_exp (s, op)
 static char *
 skip_colonthing (ptr, exp, mode)
      char *ptr;
-     expressionS *exp;
+     expressionS *exp ATTRIBUTE_UNUSED;
      int *mode;
 {
   if (*ptr == ':')
@@ -318,7 +313,7 @@ skip_colonthing (ptr, exp, mode)
        {
          ptr++;
          /* ff fill any 8 bit quantity */
-        /* exp->X_add_number -= 0x100;*/
+         /* exp->X_add_number -= 0x100; */
          *mode |= L_8;
        }
       else
@@ -349,12 +344,12 @@ skip_colonthing (ptr, exp, mode)
    @(exp[:16], Rn)     Register indirect with displacement
    @Rn+
    @-Rn
-   @aa:8                       absolute 8 bit
-   @aa:16                      absolute 16 bit
+   @aa:8               absolute 8 bit
+   @aa:16              absolute 16 bit
    @aa                 absolute 16 bit
 
    #xx[:size]          immediate data
-   @(exp:[8], pc)              pc rel
+   @(exp:[8], pc)      pc rel
    @@aa[:8]            memory indirect
 
    */
@@ -370,7 +365,7 @@ colonmod24 (op, src)
 
   if (!mode)
     {
-      /* Choose a default mode */
+      /* Choose a default mode */
       if (op->exp.X_add_number < -32768
          || op->exp.X_add_number > 32767)
        {
@@ -390,12 +385,11 @@ colonmod24 (op, src)
 
 }
 
-
 static void
 get_operand (ptr, op, dst, direction)
      char **ptr;
      struct h8_op *op;
-     unsigned int dst;
+     unsigned int dst ATTRIBUTE_UNUSED;
      int direction;
 {
   char *src = *ptr;
@@ -405,11 +399,10 @@ get_operand (ptr, op, dst, direction)
 
   op->mode = E;
 
-/* start-sanitize-h8s */
   /* Gross.  Gross.  ldm and stm have a format not easily handled
      by get_operand.  We deal with it explicitly here.  */
-  if (src[0] == 'e' && src[1] == 'r' && isdigit(src[2])
-      && src[3] == '-' && src[4] == 'e' && src[5] == 'r' && isdigit(src[6]))
+  if (src[0] == 'e' && src[1] == 'r' && isdigit (src[2])
+      && src[3] == '-' && src[4] == 'e' && src[5] == 'r' && isdigit (src[6]))
     {
       int low, high;
 
@@ -417,17 +410,17 @@ get_operand (ptr, op, dst, direction)
       high = src[6] - '0';
 
       if (high < low)
-       as_bad ("Invalid register list for ldm/stm\n");
+       as_bad (_("Invalid register list for ldm/stm\n"));
 
       if (low % 2)
-       as_bad ("Invalid register list for ldm/stm\n");
+       as_bad (_("Invalid register list for ldm/stm\n"));
 
-      if (high - low > 4)
-       as_bad ("Invalid register list for ldm/stm\n");
+      if (high - low > 3)
+       as_bad (_("Invalid register list for ldm/stm\n"));
 
-      if (high - low != 2
+      if (high - low != 1
          && low % 4)
-       as_bad ("Invalid register list for ldm/stm\n");
+       as_bad (_("Invalid register list for ldm/stm\n"));
 
       /* Even sicker.  We encode two registers into op->reg.  One
         for the low register to save, the other for the high
@@ -438,7 +431,6 @@ get_operand (ptr, op, dst, direction)
       *ptr = src + 7;
       return;
     }
-/* end-sanitize-h8s */
 
   len = parse_reg (src, &op->mode, &op->reg, direction);
   if (len)
@@ -461,31 +453,26 @@ get_operand (ptr, op, dst, direction)
 
          op->mode = MEMIND;
          return;
-
        }
 
-
       if (*src == '-')
        {
          src++;
          len = parse_reg (src, &mode, &num, direction);
          if (len == 0)
            {
-             /* Oops, not a reg after all, must be ordinary exp */
+             /* Oops, not a reg after all, must be ordinary exp */
              src--;
-             /* must be a symbol */
+             /* Must be a symbol.  */
              op->mode = ABS | PSIZE | direction;
              *ptr = skip_colonthing (parse_exp (src, &op->exp),
                                      &op->exp, &op->mode);
 
              return;
-
-
            }
 
-
          if ((mode & SIZE) != PSIZE)
-           as_bad ("Wrong size pointer register for architecture.");
+           as_bad (_("Wrong size pointer register for architecture."));
          op->mode = RDDEC;
          op->reg = num;
          *ptr = src + len;
@@ -493,11 +480,10 @@ get_operand (ptr, op, dst, direction)
        }
       if (*src == '(')
        {
-         /* Disp */
+         /* Disp */
          src++;
 
-         /* Start off assuming a 16 bit offset */
-
+         /* Start off assuming a 16 bit offset.  */
 
          src = parse_exp (src, &op->exp);
 
@@ -513,7 +499,7 @@ get_operand (ptr, op, dst, direction)
 
          if (*src != ',')
            {
-             as_bad ("expected @(exp, reg16)");
+             as_bad (_("expected @(exp, reg16)"));
              return;
 
            }
@@ -522,7 +508,7 @@ get_operand (ptr, op, dst, direction)
          len = parse_reg (src, &mode, &op->reg, direction);
          if (len == 0 || !(mode & REG))
            {
-             as_bad ("expected @(exp, reg16)");
+             as_bad (_("expected @(exp, reg16)"));
              return;
            }
          op->mode |= DISP | direction;
@@ -532,7 +518,7 @@ get_operand (ptr, op, dst, direction)
 
          if (*src != ')' && '(')
            {
-             as_bad ("expected @(exp, reg16)");
+             as_bad (_("expected @(exp, reg16)"));
              return;
            }
          *ptr = src + 1;
@@ -548,14 +534,14 @@ get_operand (ptr, op, dst, direction)
            {
              src++;
              if ((mode & SIZE) != PSIZE)
-               as_bad ("Wrong size pointer register for architecture.");
+               as_bad (_("Wrong size pointer register for architecture."));
              op->mode = RSINC;
              op->reg = num;
              *ptr = src;
              return;
            }
          if ((mode & SIZE) != PSIZE)
-           as_bad ("Wrong size pointer register for architecture.");
+           as_bad (_("Wrong size pointer register for architecture."));
 
          op->mode = direction | IND | PSIZE;
          op->reg = num;
@@ -576,7 +562,6 @@ get_operand (ptr, op, dst, direction)
        }
     }
 
-
   if (*src == '#')
     {
       src++;
@@ -586,7 +571,6 @@ get_operand (ptr, op, dst, direction)
 
       return;
     }
-/* start-sanitize-h8s */
   else if (strncmp (src, "mach", 4) == 0
           || strncmp (src, "macl", 4) == 0)
     {
@@ -595,7 +579,6 @@ get_operand (ptr, op, dst, direction)
       *ptr = src + 4;
       return;
     }
-/* end-sanitize-h8s */
   else
     {
       src = parse_exp (src, &op->exp);
@@ -614,7 +597,7 @@ get_operand (ptr, op, dst, direction)
            }
          else
            {
-             as_bad ("expect :8 or :16 here");
+             as_bad (_("expect :8 or :16 here"));
            }
        }
       else
@@ -625,9 +608,7 @@ get_operand (ptr, op, dst, direction)
     }
 }
 
-
-static
-char *
+static char *
 get_operands (noperands, op_end, operand)
      unsigned int noperands;
      char *op_end;
@@ -654,8 +635,8 @@ get_operands (noperands, op_end, operand)
        {
          operand[1].mode = 0;
        }
-
       break;
+
     case 2:
       ptr++;
       get_operand (&ptr, operand + 0, 0, SRC);
@@ -668,19 +649,17 @@ get_operands (noperands, op_end, operand)
       abort ();
     }
 
-
   return ptr;
 }
 
 /* Passed a pointer to a list of opcodes which use different
    addressing modes, return the opcode which matches the opcodes
-   provided
-   */
-static
-struct h8_opcode *
-get_specific (opcode, operands)
+   provided.  */
+static struct h8_opcode *
+get_specific (opcode, operands, size)
      struct h8_opcode *opcode;
      struct h8_op *operands;
+     int size;
 {
   struct h8_opcode *this_try = opcode;
   int found = 0;
@@ -695,96 +674,96 @@ get_specific (opcode, operands)
 
   while (this_index == opcode->idx && !found)
     {
-      unsigned int i;
       found = 1;
 
       this_try = opcode++;
-      for (i = 0; i < this_try->noperands && found; i++)
+      if (this_try->noperands == 0)
        {
-         op_type op = this_try->args.nib[i];
-         int x = operands[i].mode;
+         int this_size;
 
-         if ((op & (DISP | REG)) == (DISP | REG)
-             && ((x & (DISP | REG)) == (DISP | REG)))
-           {
-             dispreg = operands[i].reg;
-           }
-         else if (op & REG)
+         this_size = this_try->how & SN;
+         if (this_size != size && (this_size != SB || size != SN))
+           found = 0;
+       }
+      else
+       {
+         unsigned int i;
+
+         for (i = 0; i < this_try->noperands && found; i++)
            {
-             if (!(x & REG))
-               found = 0;
+             op_type op = this_try->args.nib[i];
+             int x = operands[i].mode;
 
-             if (x & L_P)
+             if ((op & (DISP | REG)) == (DISP | REG)
+                 && ((x & (DISP | REG)) == (DISP | REG)))
                {
-                 x = (x & ~L_P) | (Hmode ? L_32 : L_16);
+                 dispreg = operands[i].reg;
                }
-             if (op & L_P)
+             else if (op & REG)
                {
-                 op = (op & ~L_P) | (Hmode ? L_32 : L_16);
-               }
+                 if (!(x & REG))
+                   found = 0;
 
-             opsize = op & SIZE;
+                 if (x & L_P)
+                   x = (x & ~L_P) | (Hmode ? L_32 : L_16);
+                 if (op & L_P)
+                   op = (op & ~L_P) | (Hmode ? L_32 : L_16);
 
-             /* The size of the reg is v important */
-             if ((op & SIZE) != (x & SIZE))
-               found = 0;
-           }
-         else if ((op & ABSJMP) && (x & ABS))
-           {
-             operands[i].mode &= ~ABS;
-             operands[i].mode |= ABSJMP;
-             /* But it may not be 24 bits long */
-             if (!Hmode)
+                 opsize = op & SIZE;
+
+                 /* The size of the reg is v important.  */
+                 if ((op & SIZE) != (x & SIZE))
+                   found = 0;
+               }
+             else if ((op & ABSJMP) && (x & ABS))
                {
-                 operands[i].mode &= ~SIZE;
-                 operands[i].mode |= L_16;
+                 operands[i].mode &= ~ABS;
+                 operands[i].mode |= ABSJMP;
+                 /* But it may not be 24 bits long.  */
+                 if (!Hmode)
+                   {
+                     operands[i].mode &= ~SIZE;
+                     operands[i].mode |= L_16;
+                   }
                }
-
-
-           }
-         else if ((op & (KBIT | DBIT)) && (x & IMM))
-           {
-             /* This is ok if the immediate value is sensible */
-
-           }
-         else if (op & PCREL)
-           {
-
-             /* The size of the displacement is important */
-             if ((op & SIZE) != (x & SIZE))
-               found = 0;
-
-           }
-         else if ((op & (DISP | IMM | ABS))
-                  && (op & (DISP | IMM | ABS)) == (x & (DISP | IMM | ABS)))
-           {
-             /* Promote a L_24 to L_32 if it makes us match.  */
-             if ((x & L_24) && (op & L_32))
+             else if ((op & (KBIT | DBIT)) && (x & IMM))
                {
-                 x &= ~L_24;
-                 x |= L_32;
+                 /* This is ok if the immediate value is sensible.  */
                }
-             /* Promote an L8 to L_16 if it makes us match.  */
-             if (op & ABS && op & L_8 && op & DISP) 
+             else if (op & PCREL)
                {
-                 if (x & L_16)
-                   found= 1;
+                 /* The size of the displacement is important.  */
+                 if ((op & SIZE) != (x & SIZE))
+                   found = 0;
+               }
+             else if ((op & (DISP | IMM | ABS))
+                      && (op & (DISP | IMM | ABS)) == (x & (DISP | IMM | ABS)))
+               {
+                 /* Promote a L_24 to L_32 if it makes us match.  */
+                 if ((x & L_24) && (op & L_32))
+                   {
+                     x &= ~L_24;
+                     x |= L_32;
+                   }
+                 /* Promote an L8 to L_16 if it makes us match.  */
+                 if (op & ABS && op & L_8 && op & DISP)
+                   {
+                     if (x & L_16)
+                       found = 1;
+                   }
+                 else if ((x & SIZE) != 0
+                          && ((op & SIZE) != (x & SIZE)))
+                   found = 0;
+               }
+             else if ((op & MACREG) != (x & MACREG))
+               {
+                 found = 0;
+               }
+             else if ((op & MODE) != (x & MODE))
+               {
+                 found = 0;
                }
-             else if ((x & SIZE) != 0
-                      && ((op & SIZE) != (x & SIZE)))
-               found = 0;
-           }
-/* start-sanitize-h8s */
-         else if ((op & MACREG) != (x & MACREG))
-           {
-             found = 0;
-           }
-/* end-sanitize-h8s */
-         else if ((op & MODE) != (x & MODE))
-           {
-             found = 0;
            }
-
        }
     }
   if (found)
@@ -802,29 +781,28 @@ check_operand (operand, width, string)
   if (operand->exp.X_add_symbol == 0
       && operand->exp.X_op_symbol == 0)
     {
+      /* No symbol involved, let's look at offset, it's dangerous if
+        any of the high bits are not 0 or ff's, find out by oring or
+        anding with the width and seeing if the answer is 0 or all
+        fs.  */
 
-      /* No symbol involved, let's look at offset, it's dangerous if any of
-        the high bits are not 0 or ff's, find out by oring or anding with
-        the width and seeing if the answer is 0 or all fs*/
-      
       if ((operand->exp.X_add_number & ~width) != 0 &&
          (operand->exp.X_add_number | width) != (~0))
        {
-         if (width == 255 
+         if (width == 255
              && (operand->exp.X_add_number & 0xff00) == 0xff00)
            {
              /* Just ignore this one - which happens when trying to
                 fit a 16 bit address truncated into an 8 bit address
                 of something like bset.  */
            }
-         else 
+         else
            {
-             as_warn ("operand %s0x%lx out of range.", string,
+             as_warn (_("operand %s0x%lx out of range."), string,
                       (unsigned long) operand->exp.X_add_number);
            }
        }
     }
-
 }
 
 /* RELAXMODE has one of 3 values:
@@ -847,7 +825,6 @@ do_a_fix_imm (offset, operand, relaxmode)
   int size;
   int where;
 
-
   char *t = operand->mode & IMM ? "#" : "@";
 
   if (operand->exp.X_add_symbol == 0)
@@ -880,20 +857,23 @@ do_a_fix_imm (offset, operand, relaxmode)
          break;
 
        case L_32:
-         /* This should be done with bfd */
+         /* This should be done with bfd */
          bytes[0] = operand->exp.X_add_number >> 24;
          bytes[1] = operand->exp.X_add_number >> 16;
          bytes[2] = operand->exp.X_add_number >> 8;
          bytes[3] = operand->exp.X_add_number >> 0;
+         if (relaxmode != 0)
+           {
+             idx = (relaxmode == 2) ? R_MOV24B1 : R_MOVL1;
+             fix_new_exp (frag_now, offset, 4, &operand->exp, 0, idx);
+           }
          break;
        }
-
     }
   else
     {
       switch (operand->mode & SIZE)
        {
-
        case L_24:
        case L_32:
          size = 4;
@@ -906,7 +886,7 @@ do_a_fix_imm (offset, operand, relaxmode)
            idx = R_RELLONG;
          break;
        default:
-         as_bad("Can't work out size of operand.\n");
+         as_bad (_("Can't work out size of operand.\n"));
        case L_16:
          size = 2;
          where = 0;
@@ -914,13 +894,15 @@ do_a_fix_imm (offset, operand, relaxmode)
            idx = R_MOV16B1;
          else
            idx = R_RELWORD;
-         operand->exp.X_add_number = (short)operand->exp.X_add_number;
+         operand->exp.X_add_number =
+           ((operand->exp.X_add_number & 0xffff) ^ 0x8000) - 0x8000;
          break;
        case L_8:
          size = 1;
          where = 0;
          idx = R_RELBYTE;
-         operand->exp.X_add_number = (char)operand->exp.X_add_number;
+         operand->exp.X_add_number =
+           ((operand->exp.X_add_number & 0xff) ^ 0x80) - 0x80;
        }
 
       fix_new_exp (frag_now,
@@ -930,11 +912,9 @@ do_a_fix_imm (offset, operand, relaxmode)
                   0,
                   idx);
     }
-
 }
 
-/* Now we know what sort of opcodes it is, lets build the bytes -
- */
+/* Now we know what sort of opcodes it is, let's build the bytes.  */
 static void
 build_bytes (this_try, operand)
      struct h8_opcode *this_try;
@@ -954,14 +934,15 @@ build_bytes (this_try, operand)
   char *p = asnibbles;
 
   if (!(this_try->inbase || Hmode))
-    as_warn ("Opcode `%s' not available in H8/300 mode", this_try->name);
+    as_warn (_("Opcode `%s' with these operand types not available in H8/300 mode"),
+            this_try->name);
 
   while (*nibble_ptr != E)
     {
       int d;
       c = *nibble_ptr++;
 
-      d = (c & DST) != 0;
+      d = (c & (DST | SRC_IN_DST)) != 0;
 
       if (c < 16)
        {
@@ -969,7 +950,6 @@ build_bytes (this_try, operand)
        }
       else
        {
-
          if (c & (REG | IND | INC | DEC))
            {
              nib = operand[d].reg;
@@ -978,7 +958,7 @@ build_bytes (this_try, operand)
            {
              nib = dispreg;
            }
-         else if (c &  ABS )
+         else if (c & ABS)
            {
              operand[d].mode = c;
              absat = nibble_count / 2;
@@ -1005,7 +985,7 @@ build_bytes (this_try, operand)
                  nib = 0x8 | c;
                  break;
                default:
-                 as_bad ("Need #1 or #2 here");
+                 as_bad (_("Need #1 or #2 here"));
                }
            }
          else if (c & KBIT)
@@ -1020,15 +1000,15 @@ build_bytes (this_try, operand)
                  break;
                case 4:
                  if (!Hmode)
-                   as_warn ("#4 not valid on H8/300.");
+                   as_warn (_("#4 not valid on H8/300."));
                  nib = 9;
                  break;
 
                default:
-                 as_bad ("Need #1 or #2 here");
+                 as_bad (_("Need #1 or #2 here"));
                  break;
                }
-             /* stop it making a fix */
+             /* Stop it making a fix.  */
              operand[0].mode = 0;
            }
 
@@ -1042,19 +1022,21 @@ build_bytes (this_try, operand)
              nib |= 0x8;
            }
 
-/* start-sanitize-h8s */
          if (c & MACREG)
            {
-             nib = 2 + operand[d].reg;
+             if (operand[0].mode == MACREG)
+               /* stmac has mac[hl] as the first operand.  */
+               nib = 2 + operand[0].reg;
+             else
+               /* ldmac has mac[hl] as the second operand.  */
+               nib = 2 + operand[1].reg;
            }
-/* end-sanitize-h8s */
        }
       nibble_count++;
 
       *p++ = nib;
     }
 
-/* start-sanitize-h8s */
   /* Disgusting.  Why, oh why didn't someone ask us for advice
      on the assembler format.  */
   if (strcmp (this_try->name, "stm.l") == 0
@@ -1067,7 +1049,6 @@ build_bytes (this_try, operand)
       asnibbles[2] = high - low;
       asnibbles[7] = (this_try->name[0] == 'l') ? high : low;
     }
-/* end-sanitize-h8s */
 
   for (i = 0; i < this_try->length; i++)
     {
@@ -1079,7 +1060,7 @@ build_bytes (this_try, operand)
   if (strcmp (this_try->name, "mov.b") == 0)
     movb = 1;
 
-  /* output any fixes */
+  /* Output any fixes.  */
   for (i = 0; i < 2; i++)
     {
       int x = operand[i].mode;
@@ -1105,12 +1086,14 @@ build_bytes (this_try, operand)
 
          if (operand[i].exp.X_add_number & 1)
            {
-             as_warn ("branch operand has odd offset (%lx)\n",
+             as_warn (_("branch operand has odd offset (%lx)\n"),
                       (unsigned long) operand->exp.X_add_number);
            }
 
+         operand[i].exp.X_add_number -= 1;
          operand[i].exp.X_add_number =
-           (char) (operand[i].exp.X_add_number - 1);
+           ((operand[i].exp.X_add_number & 0xff) ^ 0x80) - 0x80;
+
          fix_new_exp (frag_now,
                       output - frag_now->fr_literal + where,
                       size,
@@ -1120,7 +1103,6 @@ build_bytes (this_try, operand)
        }
       else if (x & MEMIND)
        {
-
          check_operand (operand + i, 0xff, "@@");
          fix_new_exp (frag_now,
                       output - frag_now->fr_literal + 1,
@@ -1131,16 +1113,17 @@ build_bytes (this_try, operand)
        }
       else if (x & ABSJMP)
        {
-         /* This jmp may be a jump or a branch */
+         /* This jmp may be a jump or a branch */
 
          check_operand (operand + i, Hmode ? 0xffffff : 0xffff, "@");
          if (operand[i].exp.X_add_number & 1)
            {
-             as_warn ("branch operand has odd offset (%lx)\n",
+             as_warn (_("branch operand has odd offset (%lx)\n"),
                       (unsigned long) operand->exp.X_add_number);
            }
          if (!Hmode)
-           operand[i].exp.X_add_number = (short) operand[i].exp.X_add_number;
+           operand[i].exp.X_add_number =
+             ((operand[i].exp.X_add_number & 0xffff) ^ 0x8000) - 0x8000;
          fix_new_exp (frag_now,
                       output - frag_now->fr_literal,
                       4,
@@ -1149,27 +1132,23 @@ build_bytes (this_try, operand)
                       R_JMPL1);
        }
     }
-
 }
 
-/*
-  try and give an intelligent error message for common and simple to
-  detect errors
-  */
-
+/* Try to give an intelligent error message for common and simple to
+   detect errors.  */
 static void
 clever_message (opcode, operand)
      struct h8_opcode *opcode;
      struct h8_op *operand;
 {
-  /* Find out if there was more than one possible opccode */
+  /* Find out if there was more than one possible opcode.  */
 
   if ((opcode + 1)->idx != opcode->idx)
     {
       unsigned int argn;
 
-      /* Only one opcode of this flavour, try and guess which operand
-         didn't match */
+      /* Only one opcode of this flavour, try to guess which operand
+         didn't match */
       for (argn = 0; argn < opcode->noperands; argn++)
        {
          switch (opcode->args.nib[argn])
@@ -1177,17 +1156,16 @@ clever_message (opcode, operand)
            case RD16:
              if (operand[argn].mode != RD16)
                {
-                 as_bad ("destination operand must be 16 bit register");
+                 as_bad (_("destination operand must be 16 bit register"));
                  return;
 
                }
              break;
 
            case RS8:
-
              if (operand[argn].mode != RS8)
                {
-                 as_bad ("source operand must be 8 bit register");
+                 as_bad (_("source operand must be 8 bit register"));
                  return;
                }
              break;
@@ -1195,23 +1173,22 @@ clever_message (opcode, operand)
            case ABS16DST:
              if (operand[argn].mode != ABS16DST)
                {
-                 as_bad ("destination operand must be 16bit absolute address");
+                 as_bad (_("destination operand must be 16bit absolute address"));
                  return;
                }
              break;
            case RD8:
              if (operand[argn].mode != RD8)
                {
-                 as_bad ("destination operand must be 8 bit register");
+                 as_bad (_("destination operand must be 8 bit register"));
                  return;
                }
              break;
 
-
            case ABS16SRC:
              if (operand[argn].mode != ABS16SRC)
                {
-                 as_bad ("source operand must be 16bit absolute address");
+                 as_bad (_("source operand must be 16bit absolute address"));
                  return;
                }
              break;
@@ -1219,16 +1196,12 @@ clever_message (opcode, operand)
            }
        }
     }
-  as_bad ("invalid operands");
+  as_bad (_("invalid operands"));
 }
 
-/* This is the guts of the machine-dependent assembler.  STR points to a
-   machine dependent instruction.  This funciton is supposed to emit
-   the frags/bytes it assembles to.
-   */
-
-
-
+/* This is the guts of the machine-dependent assembler.  STR points to
+   a machine dependent instruction.  This function is supposed to emit
+   the frags/bytes it assembles.  */
 void
 md_assemble (str)
      char *str;
@@ -1241,12 +1214,13 @@ md_assemble (str)
 
   char *dot = 0;
   char c;
+  int size;
 
-  /* Drop leading whitespace */
+  /* Drop leading whitespace */
   while (*str == ' ')
     str++;
 
-  /* find the op code end */
+  /* Find the op code end.  */
   for (op_start = op_end = str;
        *op_end != 0 && *op_end != ' ';
        op_end++)
@@ -1260,11 +1234,9 @@ md_assemble (str)
        }
     }
 
-  ;
-
   if (op_end == op_start)
     {
-      as_bad ("can't find opcode ");
+      as_bad (_("can't find opcode "));
     }
   c = *op_end;
 
@@ -1275,22 +1247,40 @@ md_assemble (str)
 
   if (opcode == NULL)
     {
-      as_bad ("unknown opcode");
+      as_bad (_("unknown opcode"));
       return;
     }
 
-  /* We use to set input_line_pointer to the result of get_operands,
+  /* We used to set input_line_pointer to the result of get_operands,
      but that is wrong.  Our caller assumes we don't change it.  */
 
   (void) get_operands (opcode->noperands, op_end, operand);
   *op_end = c;
   prev_opcode = opcode;
 
-  opcode = get_specific (opcode, operand);
+  size = SN;
+  if (dot)
+    {
+      switch (*dot)
+       {
+       case 'b':
+         size = SB;
+         break;
+
+       case 'w':
+         size = SW;
+         break;
+
+       case 'l':
+         size = SL;
+         break;
+       }
+    }
+  opcode = get_specific (opcode, operand, size);
 
   if (opcode == 0)
     {
-      /* Couldn't find an opcode which matched the operands */
+      /* Couldn't find an opcode which matched the operands */
       char *where = frag_more (2);
 
       where[0] = 0x0;
@@ -1303,43 +1293,43 @@ md_assemble (str)
     {
       if (opcode->size != *dot)
        {
-         as_warn ("mismatch between opcode size and operand size");
+         as_warn (_("mismatch between opcode size and operand size"));
        }
     }
 
   build_bytes (opcode, operand);
-
 }
 
 void
 tc_crawl_symbol_chain (headers)
-     object_headers * headers;
+     object_headers *headers ATTRIBUTE_UNUSED;
 {
-  printf ("call to tc_crawl_symbol_chain \n");
+  printf (_("call to tc_crawl_symbol_chain \n"));
 }
 
 symbolS *
 md_undefined_symbol (name)
-     char *name;
+     char *name ATTRIBUTE_UNUSED;
 {
   return 0;
 }
 
 void
 tc_headers_hook (headers)
-     object_headers * headers;
+     object_headers *headers ATTRIBUTE_UNUSED;
 {
-  printf ("call to tc_headers_hook \n");
+  printf (_("call to tc_headers_hook \n"));
 }
 
 /* Various routines to kill one day */
 /* Equal to MAX_PRECISION in atof-ieee.c */
 #define MAX_LITTLENUMS 6
 
-/* Turn a string in input_line_pointer into a floating point constant of type
-   type, and store the appropriate bytes in *litP.  The number of LITTLENUMS
-   emitted is stored in *sizeP .  An error message is returned, or NULL on OK.
-   */
+/* Turn a string in input_line_pointer into a floating point constant
+   of type TYPE, and store the appropriate bytes in *LITP.  The number
+   of LITTLENUMS emitted is stored in *SIZEP.  An error message is
+   returned, or NULL on OK.  */
+
 char *
 md_atof (type, litP, sizeP)
      char type;
@@ -1380,7 +1370,7 @@ md_atof (type, litP, sizeP)
 
     default:
       *sizeP = 0;
-      return "Bad call to MD_ATOF()";
+      return _("Bad call to MD_ATOF()");
     }
   t = atof_ieee (input_line_pointer, type, words);
   if (t)
@@ -1399,69 +1389,47 @@ CONST char *md_shortopts = "";
 struct option md_longopts[] = {
   {NULL, no_argument, NULL, 0}
 };
-size_t md_longopts_size = sizeof(md_longopts);
+
+size_t md_longopts_size = sizeof (md_longopts);
 
 int
 md_parse_option (c, arg)
-     int c;
-     char *arg;
+     int c ATTRIBUTE_UNUSED;
+     char *arg ATTRIBUTE_UNUSED;
 {
   return 0;
 }
 
 void
 md_show_usage (stream)
-     FILE *stream;
+     FILE *stream ATTRIBUTE_UNUSED;
 {
 }
 \f
-int md_short_jump_size;
-
 void
 tc_aout_fix_to_chars ()
 {
-  printf ("call to tc_aout_fix_to_chars \n");
+  printf (_("call to tc_aout_fix_to_chars \n"));
   abort ();
 }
 
-void
-md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
-     char *ptr;
-     addressT from_addr;
-     addressT to_addr;
-     fragS *frag;
-     symbolS *to_symbol;
-{
-  as_fatal ("failed sanity check.");
-}
-
-void
-md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
-     char *ptr;
-     addressT from_addr, to_addr;
-     fragS *frag;
-     symbolS *to_symbol;
-{
-  as_fatal ("failed sanity check.");
-}
-
 void
 md_convert_frag (headers, seg, fragP)
-     object_headers *headers;
-     segT seg;
-     fragS *fragP;
+     object_headers *headers ATTRIBUTE_UNUSED;
+     segT seg ATTRIBUTE_UNUSED;
+     fragS *fragP ATTRIBUTE_UNUSED;
 {
-  printf ("call to md_convert_frag \n");
+  printf (_("call to md_convert_frag \n"));
   abort ();
 }
 
-valueT 
+valueT
 md_section_align (seg, size)
      segT seg;
      valueT size;
 {
-  return ((size + (1 << section_alignment[(int) seg]) - 1) & (-1 << section_alignment[(int) seg]));
-
+  return ((size + (1 << section_alignment[(int) seg]) - 1)
+         & (-1 << section_alignment[(int) seg]));
 }
 
 void
@@ -1491,19 +1459,16 @@ md_apply_fix (fixP, val)
     }
 }
 
-int md_long_jump_size;
-
 int
 md_estimate_size_before_relax (fragP, segment_type)
-     register fragS *fragP;
-     register segT segment_type;
+     register fragS *fragP ATTRIBUTE_UNUSED;
+     register segT segment_type ATTRIBUTE_UNUSED;
 {
-  printf ("call tomd_estimate_size_before_relax \n");
+  printf (_("call tomd_estimate_size_before_relax \n"));
   abort ();
 }
 
-/* Put number into target byte order */
-
+/* Put number into target byte order.  */
 void
 md_number_to_chars (ptr, use, nbytes)
      char *ptr;
@@ -1512,14 +1477,14 @@ md_number_to_chars (ptr, use, nbytes)
 {
   number_to_chars_bigendian (ptr, use, nbytes);
 }
+
 long
 md_pcrel_from (fixP)
-     fixS *fixP;
+     fixS *fixP ATTRIBUTE_UNUSED;
 {
   abort ();
 }
 
-
 void
 tc_reloc_mangle (fix_ptr, intr, base)
      fixS *fix_ptr;
@@ -1532,7 +1497,7 @@ tc_reloc_mangle (fix_ptr, intr, base)
   symbol_ptr = fix_ptr->fx_addsy;
 
   /* If this relocation is attached to a symbol then it's ok
-     to output it */
+     to output it */
   if (fix_ptr->fx_r_type == TC_CONS_RELOC)
     {
       /* cons likes to create reloc32's whatever the size of the reloc..
@@ -1550,9 +1515,7 @@ tc_reloc_mangle (fix_ptr, intr, base)
          break;
        default:
          abort ();
-
        }
-
     }
   else
     {
@@ -1563,11 +1526,24 @@ tc_reloc_mangle (fix_ptr, intr, base)
   intr->r_offset = fix_ptr->fx_offset;
 
   if (symbol_ptr)
-    intr->r_symndx = symbol_ptr->sy_number;
+    {
+      if (symbol_ptr->sy_number != -1)
+       intr->r_symndx = symbol_ptr->sy_number;
+      else
+       {
+         symbolS *segsym;
+
+         /* This case arises when a reference is made to `.'.  */
+         segsym = seg_info (S_GET_SEGMENT (symbol_ptr))->dot;
+         if (segsym == NULL)
+           intr->r_symndx = -1;
+         else
+           {
+             intr->r_symndx = segsym->sy_number;
+             intr->r_offset += S_GET_VALUE (symbol_ptr);
+           }
+       }
+    }
   else
     intr->r_symndx = -1;
-
-
 }
-
-/* end of tc-h8300.c */
This page took 0.045887 seconds and 4 git commands to generate.