is_end_of_line fixes.
[binutils-gdb.git] / gas / config / tc-h8500.c
index ca8d57b0173714448c011cb2bc5deb1add7a7c26..b5e6be381903d26d082ae813e8dc44f9057b395d 100644 (file)
@@ -1,6 +1,5 @@
-
 /* tc-h8500.c -- Assemble code for the Hitachi H8/500
-   Copyright (C) 1993 Free Software Foundation.
+   Copyright (C) 1993, 94, 95, 1998 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -15,8 +14,9 @@
    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, 675 Mass Ave, Cambridge, MA 02139, 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
 #include <stdio.h>
 #include "as.h"
 #include "bfd.h"
-
+#include "subsegs.h"
 #define DEFINE_TABLE
-#include "../opcodes/h8500-opc.h"
+#define ASSEMBLER_TABLE
+#include "opcodes/h8500-opc.h"
 #include <ctype.h>
 
-const char comment_chars[] =
-{';', 0};
-const char line_separator_chars[] =
-{'$', 0};
-const char line_comment_chars[] = "";
+const char comment_chars[] = "!";
+const char line_separator_chars[] = ";";
+const char line_comment_chars[] = "!#";
 
 /* This table describes all the machine specific pseudo-ops the assembler
    has to support.  The fields are:
@@ -60,7 +59,7 @@ const pseudo_typeS md_pseudo_table[] =
   {0, 0, 0}
 };
 
-int md_reloc_size;
+const int md_reloc_size;
 
 const char EXP_CHARS[] = "eE";
 
@@ -85,7 +84,7 @@ const char FLT_CHARS[] = "rRsSfFdDxXpP";
 #define END 4
 
 #define BYTE_F 127
-#define BYTE_B -128
+#define BYTE_B -126
 #define WORD_F 32767
 #define WORD_B 32768
 
@@ -104,6 +103,7 @@ md_begin ()
   h8500_opcode_info *opcode;
   char prev_buffer[100];
   int idx = 0;
+  register relax_typeS *table;
 
   opcode_hash_control = hash_new ();
   prev_buffer[0] = 0;
@@ -118,54 +118,57 @@ md_begin ()
        }
     }
 
-  /* Initialize the relax table */
-  md_relax_table[C (BRANCH, BYTE_DISP)].rlx_forward = BYTE_F;
-  md_relax_table[C (BRANCH, BYTE_DISP)].rlx_backward = BYTE_B;
-  md_relax_table[C (BRANCH, BYTE_DISP)].rlx_length = 2;
-  md_relax_table[C (BRANCH, BYTE_DISP)].rlx_more = C (BRANCH, WORD_DISP);
-
-  md_relax_table[C (BRANCH, WORD_DISP)].rlx_forward = WORD_F;
-  md_relax_table[C (BRANCH, WORD_DISP)].rlx_backward = WORD_B;
-  md_relax_table[C (BRANCH, WORD_DISP)].rlx_length = 3;
-  md_relax_table[C (BRANCH, WORD_DISP)].rlx_more = 0;
-
-  md_relax_table[C (SCB_F, BYTE_DISP)].rlx_forward = BYTE_F;
-  md_relax_table[C (SCB_F, BYTE_DISP)].rlx_backward = BYTE_B;
-  md_relax_table[C (SCB_F, BYTE_DISP)].rlx_length = 3;
-  md_relax_table[C (SCB_F, BYTE_DISP)].rlx_more = C (SCB_F, WORD_DISP);
-
-  md_relax_table[C (SCB_F, WORD_DISP)].rlx_forward = WORD_F;
-  md_relax_table[C (SCB_F, WORD_DISP)].rlx_backward = WORD_B;
-  md_relax_table[C (SCB_F, WORD_DISP)].rlx_length = 8;
-  md_relax_table[C (SCB_F, WORD_DISP)].rlx_more = 0;
-
-  md_relax_table[C (SCB_TST, BYTE_DISP)].rlx_forward = BYTE_F;
-  md_relax_table[C (SCB_TST, BYTE_DISP)].rlx_backward = BYTE_B;
-  md_relax_table[C (SCB_TST, BYTE_DISP)].rlx_length = 3;
-  md_relax_table[C (SCB_TST, BYTE_DISP)].rlx_more = C (SCB_TST, WORD_DISP);
-
-  md_relax_table[C (SCB_TST, WORD_DISP)].rlx_forward = WORD_F;
-  md_relax_table[C (SCB_TST, WORD_DISP)].rlx_backward = WORD_B;
-  md_relax_table[C (SCB_TST, WORD_DISP)].rlx_length = 10;
-  md_relax_table[C (SCB_TST, WORD_DISP)].rlx_more = 0;
+  /* Initialize the relax table.  We use a local variable to avoid
+     warnings about modifying a supposedly const data structure.  */
+  table = (relax_typeS *) md_relax_table;
+  table[C (BRANCH, BYTE_DISP)].rlx_forward = BYTE_F;
+  table[C (BRANCH, BYTE_DISP)].rlx_backward = BYTE_B;
+  table[C (BRANCH, BYTE_DISP)].rlx_length = 2;
+  table[C (BRANCH, BYTE_DISP)].rlx_more = C (BRANCH, WORD_DISP);
+
+  table[C (BRANCH, WORD_DISP)].rlx_forward = WORD_F;
+  table[C (BRANCH, WORD_DISP)].rlx_backward = WORD_B;
+  table[C (BRANCH, WORD_DISP)].rlx_length = 3;
+  table[C (BRANCH, WORD_DISP)].rlx_more = 0;
+
+  table[C (SCB_F, BYTE_DISP)].rlx_forward = BYTE_F;
+  table[C (SCB_F, BYTE_DISP)].rlx_backward = BYTE_B;
+  table[C (SCB_F, BYTE_DISP)].rlx_length = 3;
+  table[C (SCB_F, BYTE_DISP)].rlx_more = C (SCB_F, WORD_DISP);
+
+  table[C (SCB_F, WORD_DISP)].rlx_forward = WORD_F;
+  table[C (SCB_F, WORD_DISP)].rlx_backward = WORD_B;
+  table[C (SCB_F, WORD_DISP)].rlx_length = 8;
+  table[C (SCB_F, WORD_DISP)].rlx_more = 0;
+
+  table[C (SCB_TST, BYTE_DISP)].rlx_forward = BYTE_F;
+  table[C (SCB_TST, BYTE_DISP)].rlx_backward = BYTE_B;
+  table[C (SCB_TST, BYTE_DISP)].rlx_length = 3;
+  table[C (SCB_TST, BYTE_DISP)].rlx_more = C (SCB_TST, WORD_DISP);
+
+  table[C (SCB_TST, WORD_DISP)].rlx_forward = WORD_F;
+  table[C (SCB_TST, WORD_DISP)].rlx_backward = WORD_B;
+  table[C (SCB_TST, WORD_DISP)].rlx_length = 10;
+  table[C (SCB_TST, WORD_DISP)].rlx_more = 0;
 
 }
 
-int rn;                                /* register number used by RN */
-int rs;                                /* register number used by RS */
-int rd;                                /* register number used by RD */
-int crb;                       /* byte size cr */
-int crw;                       /* word sized cr */
+static int rn;                 /* register number used by RN */
+static int rs;                 /* register number used by RS */
+static int rd;                 /* register number used by RD */
+static int crb;                        /* byte size cr */
+static int crw;                        /* word sized cr */
+static int cr;                 /* unknown size cr */
 
-expressionS displacement;      /* displacement expression */
-int displacement_size;         /* and size if given */
+static expressionS displacement;/* displacement expression */
+static int displacement_size;  /* and size if given */
 
-int immediate_inpage;
-expressionS immediate;         /* immediate expression */
-int immediate_size;            /* and size if given */
+static int immediate_inpage;
+static expressionS immediate;  /* immediate expression */
+static int immediate_size;     /* and size if given */
 
-expressionS absolute;          /* absolute expression */
-int absolute_size;             /* and size if given */
+static expressionS absolute;   /* absolute expression */
+static int absolute_size;      /* and size if given */
 
 typedef struct
 {
@@ -178,129 +181,134 @@ typedef struct
 h8500_operand_info;
 
 /* try and parse a reg name, returns number of chars consumed */
-int
+static int
 parse_reg (src, mode, reg)
      char *src;
      int *mode;
-     unsigned int *reg;
+     int *reg;
 {
-  if (src[0] == 'r')
+  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] == 'r')
     {
       if (src[1] >= '0' && src[1] <= '7')
        {
          *mode = RN;
          *reg = (src[1] - '0');
-         return 2;
+         return len;
        }
     }
-
-  if (src[0] == 's' && src[1] == 'p')
+  if (len == 2 && src[0] == 's' && src[1] == 'p')
     {
       *mode = RN;
       *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 = CRB;
       *reg = 1;
-      return 3;
+      return len;
     }
-  if (src[0] == 's' && src[1] == 'r')
+  if (len == 2 && src[0] == 's' && src[1] == 'r')
     {
       *mode = CRW;
       *reg = 0;
-      return 2;
+      return len;
     }
-
-  if (src[0] == 'b' && src[1] == 'r')
+  if (len == 2 && src[0] == 'b' && src[1] == 'r')
     {
       *mode = CRB;
       *reg = 3;
-      return 2;
+      return len;
     }
-
-  if (src[0] == 'e' && src[1] == 'p')
+  if (len == 2 && src[0] == 'e' && src[1] == 'p')
     {
       *mode = CRB;
       *reg = 4;
-      return 2;
+      return len;
     }
-
-  if (src[0] == 'd' && src[1] == 'p')
+  if (len == 2 && src[0] == 'd' && src[1] == 'p')
     {
       *mode = CRB;
       *reg = 5;
-      return 2;
+      return len;
     }
-
-  if (src[0] == 't' && src[1] == 'p')
+  if (len == 2 && src[0] == 't' && src[1] == 'p')
     {
-      *mode = CRW;
+      *mode = CRB;
       *reg = 7;
-      return 2;
+      return len;
     }
-
-  if (src[0] == 'f' && src[1] == 'p')
+  if (len == 2 && src[0] == 'f' && src[1] == 'p')
     {
       *mode = RN;
       *reg = 6;
-      return 2;
+      return len;
     }
   return 0;
 }
 
+static
 char *
 parse_exp (s, op, page)
      char *s;
      expressionS *op;
-int *page;
+     int *page;
 {
-  char *save; 
+  char *save;
   char *new;
-  segT seg;
 
   save = input_line_pointer;
 
-*page = 0;
+  *page = 0;
   if (s[0] == '%')
-  {
-    if (s[1] == 'p' && s[2] == 'a' && s[3] == 'g' && s[4] == 'e') {
-      s+=5;
-
-*page = 1;
-    }
-    else  if (s[1] == 'o' && s[2] == 'f' && s[3] == 'f') {
-      s+=4;
+    {
+      if (s[1] == 'p' && s[2] == 'a' && s[3] == 'g' && s[4] == 'e')
+       {
+         s += 5;
+         *page = 'p';
+       }
+      if (s[1] == 'h' && s[2] == 'i' && s[3] == '1' && s[4] == '6')
+       {
+         s += 5;
+         *page = 'h';
+       }
+      else if (s[1] == 'o' && s[2] == 'f' && s[3] == 'f')
+       {
+         s += 4;
+         *page = 'o';
+       }
     }
-  }
 
   input_line_pointer = s;
 
-  seg = expr (0, op);
+  expression (op);
+  if (op->X_op == O_absent)
+    as_bad (_("missing operand"));
   new = input_line_pointer;
   input_line_pointer = save;
-  if (SEG_NORMAL (seg))
-   return new;
-  switch (seg)
-  {
-   case SEG_ABSOLUTE:
-   case SEG_UNKNOWN:
-   case SEG_DIFFERENCE:
-   case SEG_BIG:
-   case SEG_REGISTER:
-    return new;
-   case SEG_ABSENT:
-    as_bad ("Missing operand");
-    return new;
-   default:
-    as_bad ("Don't understand operand of type %s", segment_name (seg));
-    return new;
-  }
+  return new;
 }
 
+typedef enum
+  {
+    exp_signed, exp_unsigned, exp_sandu
+  } sign_type;
+
+
 static char *
-skip_colonthing (ptr, exp, def, size8, size16, size24)
+skip_colonthing (sign, ptr, exp, def, size8, size16, size24)
+     sign_type sign;
      char *ptr;
      h8500_operand_info *exp;
      int def;
@@ -310,106 +318,121 @@ skip_colonthing (ptr, exp, def, size8, size16, size24)
 {
   ptr = parse_exp (ptr, &exp->exp, &exp->page);
   if (*ptr == ':')
-  {
-    ptr++;
-    if (*ptr == '8')
     {
       ptr++;
-      exp->type = size8;
-    }
-    else if (ptr[0] == '1' & ptr[1] == '6')
-    {
-      ptr += 2;
-      exp->type = size16;
-    }
-    else if (ptr[0] == '2' & ptr[1] == '4')
-    {
-      if (!size24)
-      {
-       as_bad (":24 not valid for this opcode");
-      }
-      ptr += 2;
-      exp->type = size24;
-    }
-    else
-    {
-      as_bad ("expect :8,:16 or :24");
-      exp->type = size16;
+      if (*ptr == '8')
+       {
+         ptr++;
+         exp->type = size8;
+       }
+      else if (ptr[0] == '1' & ptr[1] == '6')
+       {
+         ptr += 2;
+         exp->type = size16;
+       }
+      else if (ptr[0] == '2' & ptr[1] == '4')
+       {
+         if (!size24)
+           {
+             as_bad (_(":24 not valid for this opcode"));
+           }
+         ptr += 2;
+         exp->type = size24;
+       }
+      else
+       {
+         as_bad (_("expect :8,:16 or :24"));
+         exp->type = size16;
+       }
     }
-  }
   else
-  {
-    if(exp->page) {
-      exp->type = IMM8;
-    }
-    else {
-      /* Let's work out the size from the context */
-      if (size8
-         && exp->exp.X_seg == SEG_ABSOLUTE
-         && exp->exp.X_add_number >= -128
-         && exp->exp.X_add_number <= 127)
-      {
-       exp->type = size8;
-      }
+    {
+      if (exp->page == 'p')
+       {
+         exp->type = IMM8;
+       }
+      else if (exp->page == 'h')
+       {
+         exp->type = IMM16;
+       }
       else
-      {
-       exp->type = def;
-      }
+       {
+         /* Let's work out the size from the context */
+         int n = exp->exp.X_add_number;
+         if (size8
+             && exp->exp.X_op == O_constant
+             && ((sign == exp_signed && (n >= -128 && n <= 127))
+                 || (sign == exp_unsigned && (n >= 0 && (n <= 255)))
+                 || (sign == exp_sandu && (n >= -128 && (n <= 255)))))
+           {
+             exp->type = size8;
+           }
+         else
+           {
+             exp->type = def;
+           }
+       }
     }
-  }
   return ptr;
 }
 
 static int
-parse_reglist(src, op)
-char *src;
-h8500_operand_info *op;
+parse_reglist (src, op)
+     char *src;
+     h8500_operand_info *op;
 {
   int mode;
   int rn;
   int mask = 0;
   int rm;
   int idx = 1;                 /* skip ( */
-  while (src[idx] && src[idx] != ')') 
-  {
-    int done = parse_reg(src+idx, &mode, &rn);
-    if (done) 
-    {
-      idx += done;
-      mask |= 1<<rn;
-    }
-    else 
-    {
-      as_bad("syntax error in reg list");
-      return 0;
-    }
-    if (src[idx]== '-') 
+
+  while (src[idx] && src[idx] != ')')
     {
-      idx++;
-      done = parse_reg(src+idx, &mode, &rm);
-      if (done) {
-       idx += done;
-       while (rn <= rm) {
-         mask |= 1<<rn;
-         rn++;
+      int done = parse_reg (src + idx, &mode, &rn);
+
+      if (done)
+       {
+         idx += done;
+         mask |= 1 << rn;
+       }
+      else
+       {
+         as_bad (_("syntax error in reg list"));
+         return 0;
+       }
+      if (src[idx] == '-')
+       {
+         idx++;
+         done = parse_reg (src + idx, &mode, &rm);
+         if (done)
+           {
+             idx += done;
+             while (rn <= rm)
+               {
+                 mask |= 1 << rn;
+                 rn++;
+               }
+           }
+         else
+           {
+             as_bad (_("missing final register in range"));
+           }
        }
-      }
-      else {
-       as_bad("missing final register in range");
-      }
+      if (src[idx] == ',')
+       idx++;
     }
-    if (src[idx] == ',')
-     idx++;
-  }
   idx++;
   op->exp.X_add_symbol = 0;
-  op->exp.X_subtract_symbol = 0;
+  op->exp.X_op_symbol = 0;
   op->exp.X_add_number = mask;
-  op->exp.X_seg = SEG_ABSOLUTE;
-  op->type= IMM8;
+  op->exp.X_op = O_constant;
+  op->exp.X_unsigned = 1;
+  op->type = IMM8;
   return idx;
 
 }
+
 /* The many forms of operand:
 
    Rn                  Register direct
@@ -423,22 +446,22 @@ h8500_operand_info *op;
    */
 
 static void
-get_operand (ptr, op)
+get_operand (ptr, op, ispage)
      char **ptr;
      h8500_operand_info *op;
+     char ispage;
 {
   char *src = *ptr;
   int mode;
   unsigned int num;
   unsigned int len;
-  unsigned int size;
-
+  op->page = 0;
   if (src[0] == '(' && src[1] == 'r')
-  {
-    /* This is a register list */
-    *ptr = src +  parse_reglist(src, op);
-    return;
-  }
+    {
+      /* This is a register list */
+      *ptr = src + parse_reglist (src, op);
+      return;
+    }
 
   len = parse_reg (src, &op->type, &op->reg);
 
@@ -460,7 +483,8 @@ get_operand (ptr, op)
              /* Oops, not a reg after all, must be ordinary exp */
              src--;
              /* must be a symbol */
-             *ptr = skip_colonthing (src, op, ABS16, ABS8, ABS16, ABS24);
+             *ptr = skip_colonthing (exp_unsigned, src,
+                                     op, ABS16, ABS8, ABS16, ABS24);
              return;
            }
 
@@ -474,24 +498,25 @@ get_operand (ptr, op)
          /* Disp */
          src++;
 
-         src = skip_colonthing (src, op, RNIND_D16, RNIND_D8, RNIND_D16, 0);
+         src = skip_colonthing (exp_signed, src, 
+                                op, RNIND_D16, RNIND_D8, RNIND_D16, 0);
 
          if (*src != ',')
            {
-             as_bad ("expected @(exp, Rn)");
+             as_bad (_("expected @(exp, Rn)"));
              return;
            }
          src++;
          len = parse_reg (src, &mode, &op->reg);
          if (len == 0 || mode != RN)
            {
-             as_bad ("expected @(exp, Rn)");
+             as_bad (_("expected @(exp, Rn)"));
              return;
            }
          src += len;
          if (*src != ')')
            {
-             as_bad ("expected @(exp, Rn)");
+             as_bad (_("expected @(exp, Rn)"));
              return;
            }
          *ptr = src + 1;
@@ -507,7 +532,7 @@ get_operand (ptr, op)
              src++;
              if (mode != RN)
                {
-                 as_bad ("@Rn+ needs word register");
+                 as_bad (_("@Rn+ needs word register"));
                  return;
                }
              op->type = RNINC;
@@ -517,7 +542,7 @@ get_operand (ptr, op)
            }
          if (mode != RN)
            {
-             as_bad ("@Rn needs word register");
+             as_bad (_("@Rn needs word register"));
              return;
            }
          op->type = RNIND;
@@ -528,7 +553,9 @@ get_operand (ptr, op)
       else
        {
          /* must be a symbol */
-         *ptr = skip_colonthing (src, op, ABS16, ABS8, ABS16, 0);
+         *ptr =
+           skip_colonthing (exp_unsigned, src, op,
+                            ispage ? ABS24 : ABS16, ABS8, ABS16, ABS24);
          return;
        }
     }
@@ -536,12 +563,13 @@ get_operand (ptr, op)
   if (*src == '#')
     {
       src++;
-      *ptr = skip_colonthing (src, op, IMM16, IMM8, IMM16, 0);
+      *ptr = skip_colonthing (exp_sandu, src, op, IMM16, IMM8, IMM16, ABS24);
       return;
     }
   else
     {
-      *ptr = skip_colonthing (src, op, PCREL8, PCREL8, PCREL16, 0);
+      *ptr = skip_colonthing (exp_signed, src, op,
+                             ispage ? ABS24 : PCREL8, PCREL8, PCREL16, ABS24);
     }
 }
 
@@ -564,7 +592,7 @@ get_operands (info, args, operand)
 
     case 1:
       ptr++;
-      get_operand (&ptr, operand + 0, 0);
+      get_operand (&ptr, operand + 0, info->name[0] == 'p');
       operand[1].type = 0;
       break;
 
@@ -573,7 +601,7 @@ get_operands (info, args, operand)
       get_operand (&ptr, operand + 0, 0);
       if (*ptr == ',')
        ptr++;
-      get_operand (&ptr, operand + 1, 1);
+      get_operand (&ptr, operand + 1, 0);
       break;
 
     default:
@@ -588,7 +616,7 @@ get_operands (info, args, operand)
    provided
    */
 
-int pcrel8;
+int pcrel8;                    /* Set when we've seen a pcrel operand */
 
 static
 h8500_opcode_info *
@@ -600,7 +628,6 @@ get_specific (opcode, operands)
   int found = 0;
   unsigned int noperands = opcode->nargs;
 
-  unsigned int dispreg;
   unsigned int this_index = opcode->idx;
 
   while (this_index == opcode->idx && !found)
@@ -617,17 +644,9 @@ get_specific (opcode, operands)
 
          switch (this_try->arg_type[i])
            {
-           case FPIND_D16:
-             /* Opcode needs (disp:16,fp) */
-             if (user->type == DISP16 && user->reg == 6)
-               {
-                 displacement = user->exp;
-                 continue;
-               }
-             break;
            case FPIND_D8:
              /* Opcode needs (disp:8,fp) */
-             if (user->type == DISP8 && user->reg == 6)
+             if (user->type == RNIND_D8 && user->reg == 6)
                {
                  displacement = user->exp;
                  continue;
@@ -658,12 +677,19 @@ get_specific (opcode, operands)
                  continue;
                }
              break;
+
            case SPDEC:
              if (user->type == RNDEC && user->reg == 7)
                {
                  continue;
                }
              break;
+           case SPINC:
+             if (user->type == RNINC && user->reg == 7)
+               {
+                 continue;
+               }
+             break;
            case ABS16:
              if (user->type == ABS16)
                {
@@ -685,15 +711,16 @@ get_specific (opcode, operands)
                  continue;
                }
              break;
+
            case CRB:
-             if (user->type == CRB)
+             if ((user->type == CRB || user->type == CR) && user->reg != 0)
                {
                  crb = user->reg;
                  continue;
                }
              break;
            case CRW:
-             if (user->type == CRW)
+             if ((user->type == CRW || user->type == CR) && user->reg == 0)
                {
                  crw = user->reg;
                  continue;
@@ -736,7 +763,7 @@ get_specific (opcode, operands)
              break;
 
            case IMM16:
-             if (user->type == IMM16 
+             if (user->type == IMM16
                  || user->type == IMM8)
                {
                  immediate_inpage = user->page;
@@ -744,7 +771,7 @@ get_specific (opcode, operands)
                  continue;
                }
              break;
-            case RLIST:
+           case RLIST:
            case IMM8:
              if (user->type == IMM8)
                {
@@ -763,7 +790,7 @@ get_specific (opcode, operands)
              break;
            case QIM:
              if (user->type == IMM8
-                 && user->exp.X_seg == SEG_ABSOLUTE
+                 && user->exp.X_op == O_constant
                  &&
                  (user->exp.X_add_number == -2
                   || user->exp.X_add_number == -1
@@ -789,12 +816,13 @@ get_specific (opcode, operands)
                  continue;
                }
              break;
-            case RDIND:
+           case RDIND:
              if (user->type == RNIND)
-             {
-             rd = user->reg;
-             continue;
-           }
+               {
+                 rd = user->reg;
+                 continue;
+
+               }
              break;
            case RNINC:
            case RNIND:
@@ -814,7 +842,7 @@ get_specific (opcode, operands)
                }
              break;
            default:
-             printf ("unhandled %d\n", this_try->arg_type[i]);
+             printf (_("unhandled %d\n"), this_try->arg_type[i]);
              break;
            }
 
@@ -838,59 +866,30 @@ check (operand, low, high)
      int low;
      int high;
 {
-  if (operand->X_seg != SEG_ABSOLUTE
+  if (operand->X_op != O_constant
       || operand->X_add_number < low
       || operand->X_add_number > high)
     {
-      as_bad ("operand must be absolute in range %d..%d", low, high);
+      as_bad (_("operand must be absolute in range %d..%d"), low, high);
     }
   return operand->X_add_number;
 }
 
-#if 0
-static void
-DEFUN (check_operand, (operand, width, string),
-       struct h8_op *operand AND
-       unsigned int width AND
-       char *string)
-{
-  if (operand->exp.X_add_symbol == 0
-      && operand->exp.X_subtract_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*/
-      if ((operand->exp.X_add_number & ~width) != 0 &&
-         (operand->exp.X_add_number | width) != (~0))
-       {
-         as_warn ("operand %s0x%x out of range.", string, operand->exp.X_add_number);
-       }
-    }
-
-}
-
-#endif
-
-insert (size, output, index, exp, reloc, opcode)
+static
+void
+insert (output, index, exp, reloc, pcrel)
      char *output;
      int index;
      expressionS *exp;
-     char *opcode;
+     int reloc;
+     int pcrel;
 {
-  md_number_to_chars (output + index, exp->X_add_number, size);
-  exp->X_add_number = 0;
-  if (exp->X_add_symbol || exp->X_subtract_symbol)
-    {
-      fix_new (frag_now,
+  fix_new_exp (frag_now,
               output - frag_now->fr_literal + index,
-              size,
-              exp->X_add_symbol,
-              exp->X_subtract_symbol,
-              (short) (exp->X_add_number),
-              0,
+              4,               /* always say size is 4, but we know better */
+              exp,
+              pcrel,
               reloc);
-    }
 }
 
 void
@@ -906,18 +905,18 @@ build_relaxable_instruction (opcode, operand)
   int type;
 
   if (opcode->bytes[0].contents == 0x01)
-  {
-    type = SCB_F;
-  }
+    {
+      type = SCB_F;
+    }
   else if (opcode->bytes[0].contents == 0x06
           || opcode->bytes[0].contents == 0x07)
-  {
-    type = SCB_TST;
-  }
+    {
+      type = SCB_TST;
+    }
   else
-  {
-    type = BRANCH;
-  }
+    {
+      type = BRANCH;
+    }
 
   p = frag_var (rs_machine_dependent,
                md_relax_table[C (type, WORD_DISP)].rlx_length,
@@ -928,10 +927,10 @@ build_relaxable_instruction (opcode, operand)
                0);
 
   p[0] = opcode->bytes[0].contents;
-  if (type != BRANCH) 
-  {
-    p[1] = opcode->bytes[1].contents | rs;
-  }
+  if (type != BRANCH)
+    {
+      p[1] = opcode->bytes[1].contents | rs;
+    }
 }
 
 /* Now we know what sort of opcodes it is, lets build the bytes -
@@ -942,13 +941,7 @@ build_bytes (opcode, operand)
      h8500_operand_info *operand;
 
 {
-  unsigned int i;
-
-  char part;
   int index;
-  char high;
-  int nib;
-  int byte;
 
   if (pcrel8)
     {
@@ -967,7 +960,7 @@ build_bytes (opcode, operand)
          switch (opcode->bytes[index].insert)
            {
            default:
-             printf ("failed for %d\n", opcode->bytes[index].insert);
+             printf (_("failed for %d\n"), opcode->bytes[index].insert);
              break;
            case 0:
              break;
@@ -975,51 +968,95 @@ build_bytes (opcode, operand)
              output[index] |= rn;
              break;
            case RD:
+           case RDIND:
+             
              output[index] |= rd;
              break;
            case RS:
              output[index] |= rs;
              break;
            case DISP16:
-           case FPIND_D16:
-             insert (2, output, index, &displacement, R_H8500_IMM16);
+             insert (output, index, &displacement, R_H8500_IMM16, 0);
              index++;
              break;
            case DISP8:
            case FPIND_D8:
-             insert (1, output, index, &displacement, R_H8500_IMM8);
+             insert (output, index, &displacement, R_H8500_IMM8, 0);
              break;
+
            case IMM16:
-             insert (2, output, index, &immediate, R_H8500_IMM16);
+             {
+               int p;
+               switch (immediate_inpage) {
+               case 'p':
+                 p = R_H8500_HIGH16;
+                 break;
+               case 'h':               
+                 p = R_H8500_HIGH16;
+                 break;
+               default:
+                 p = R_H8500_IMM16;
+                 break;
+               }
+               
+               insert (output, index, &immediate,p, 0);
+             }
+               
              index++;
              break;
-            case RLIST:
+           case RLIST:
            case IMM8:
-             insert (1, output, index, &immediate, immediate_inpage ?
-                     R_H8500_HIGH8 : R_H8500_IMM8);
+             if (immediate_inpage)
+               {
+                 insert (output, index, &immediate, R_H8500_HIGH8, 0);
+               }
+             else
+               {
+                 insert (output, index, &immediate, R_H8500_IMM8, 0);
+               }
              break;
            case PCREL16:
-             insert (2, output, index, &displacement, R_H8500_PCREL16);
+             insert (output, index, &displacement, R_H8500_PCREL16, 1);
              index++;
              break;
            case PCREL8:
-             insert (1, output, index, &displacement, R_H8500_PCREL8, output);
+             insert (output, index, &displacement, R_H8500_PCREL8, 1);
              break;
            case IMM4:
              output[index] |= check (&immediate, 0, 15);
              break;
+           case CR:
+
+             output[index] |= cr;
+             if (cr == 0)
+               {
+                 output[0] |= 0x8;
+               }
+             else
+               {
+                 output[0] &= ~0x8;
+               }
+
+             break;
+
            case CRB:
              output[index] |= crb;
+             output[0] &= ~0x8;
              break;
            case CRW:
              output[index] |= crw;
+             output[0] |= 0x8;
+             break;
+           case ABS24:
+             insert (output, index, &absolute, R_H8500_IMM24, 0);
+             index += 2;
              break;
            case ABS16:
-             insert (2, output, index, absolute, R_H8500_IMM16);
+             insert (output, index, &absolute, R_H8500_IMM16, 0);
              index++;
              break;
            case ABS8:
-             insert (1, output, index, absolute, R_H8500_IMM8);
+             insert (output, index, &absolute, R_H8500_IMM8, 0);
              break;
            case QIM:
              switch (immediate.X_add_number)
@@ -1054,13 +1091,10 @@ DEFUN (md_assemble, (str),
 {
   char *op_start;
   char *op_end;
-  unsigned int i;
   h8500_operand_info operand[2];
   h8500_opcode_info *opcode;
   h8500_opcode_info *prev_opcode;
   char name[11];
-  char *dot = 0;
-  char c;
 
   int nlen = 0;
 
@@ -1070,12 +1104,12 @@ DEFUN (md_assemble, (str),
 
   /* find the op code end */
   for (op_start = op_end = str;
-       *op_end != 0 && *op_end != ' ';
+       !is_end_of_line[(unsigned char) *op_end] && *op_end != ' ';
        op_end++)
     {
-      if (*op_end != '.'
+      if (                     /**op_end != '.'
          && *op_end != ':'
-         && nlen < 10)
+                                 && */ nlen < 10)
        {
          name[nlen++] = *op_end;
        }
@@ -1084,18 +1118,18 @@ DEFUN (md_assemble, (str),
 
   if (op_end == op_start)
     {
-      as_bad ("can't find opcode ");
+      as_bad (_("can't find opcode "));
     }
 
   opcode = (h8500_opcode_info *) hash_find (opcode_hash_control, name);
 
   if (opcode == NULL)
     {
-      as_bad ("unknown opcode");
+      as_bad (_("unknown opcode"));
       return;
     }
 
-  input_line_pointer = get_operands (opcode, op_end, operand);
+  get_operands (opcode, op_end, operand);
   prev_opcode = opcode;
 
   opcode = get_specific (opcode, operand);
@@ -1107,7 +1141,7 @@ DEFUN (md_assemble, (str),
 
       where[0] = 0x0;
       where[1] = 0x0;
-      as_bad ("invalid operands for opcode");
+      as_bad (_("invalid operands for opcode"));
       return;
     }
 
@@ -1119,7 +1153,7 @@ void
 DEFUN (tc_crawl_symbol_chain, (headers),
        object_headers * headers)
 {
-  printf ("call to tc_crawl_symbol_chain \n");
+  printf (_("call to tc_crawl_symbol_chain \n"));
 }
 
 symbolS *
@@ -1133,12 +1167,7 @@ void
 DEFUN (tc_headers_hook, (headers),
        object_headers * headers)
 {
-  printf ("call to tc_headers_hook \n");
-}
-
-void
-DEFUN_VOID (md_end)
-{
+  printf (_("call to tc_headers_hook \n"));
 }
 
 /* Various routines to kill one day */
@@ -1189,7 +1218,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)
@@ -1201,48 +1230,34 @@ md_atof (type, litP, sizeP)
       md_number_to_chars (litP, (long) (*wordP++), sizeof (LITTLENUM_TYPE));
       litP += sizeof (LITTLENUM_TYPE);
     }
-  return "";                   /* Someone should teach Dean about null pointers */
+  return 0;
 }
+\f
+CONST char *md_shortopts = "";
+struct option md_longopts[] = {
+  {NULL, no_argument, NULL, 0}
+};
+size_t md_longopts_size = sizeof(md_longopts);
 
 int
-md_parse_option (argP, cntP, vecP)
-     char **argP;
-     int *cntP;
-     char ***vecP;
-
+md_parse_option (c, arg)
+     int c;
+     char *arg;
 {
   return 0;
-
-}
-
-int md_short_jump_size;
-
-void
-tc_aout_fix_to_chars ()
-{
-  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;
-     long from_addr;
-     long to_addr;
-     fragS *frag;
-     symbolS *to_symbol;
+md_show_usage (stream)
+     FILE *stream;
 {
-  as_fatal ("failed sanity check.");
 }
-
+\f
 void
-md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
-     char *ptr;
-     long from_addr, to_addr;
-     fragS *frag;
-     symbolS *to_symbol;
+tc_aout_fix_to_chars ()
 {
-  as_fatal ("failed sanity check.");
+  printf (_("call to tc_aout_fix_to_chars \n"));
+  abort ();
 }
 
 static
@@ -1256,11 +1271,12 @@ wordify_scb (buffer, disp_size, inst_size)
 
   switch (buffer[0])
     {
-     case 0x0e: /* BSR */
+    case 0x0e:                 /* BSR */
     case 0x20:
     case 0x21:
     case 0x22:
     case 0x23:
+    case 0x24:
     case 0x25:
     case 0x26:
     case 0x27:
@@ -1314,12 +1330,11 @@ wordify_scb (buffer, disp_size, inst_size)
 called after relaxing, change the frags so they know how big they are
 */
 void
-md_convert_frag (headers, fragP)
+md_convert_frag (headers, seg, fragP)
      object_headers *headers;
+     segT seg;
      fragS *fragP;
-
 {
-  fixS *fixP;
   int disp_size = 0;
   int inst_size = 0;
   char *buffer = fragP->fr_fix + fragP->fr_literal;
@@ -1350,18 +1365,17 @@ md_convert_frag (headers, fragP)
     case C (SCB_F, UNDEF_WORD_DISP):
     case C (SCB_TST, UNDEF_WORD_DISP):
       /* This tried to be relaxed, but didn't manage it, it now needs a
-       fix */
+        fix */
       wordify_scb (buffer, &disp_size, &inst_size);
 
       /* Make a reloc */
-      fixP = fix_new (fragP,
-                     fragP->fr_fix + inst_size,
-                     2,
-                     fragP->fr_symbol,
-                     0,
-                     fragP->fr_offset,
-                     0,
-                     R_H8500_PCREL16);
+      fix_new (fragP,
+              fragP->fr_fix + inst_size,
+              4,
+              fragP->fr_symbol,
+              fragP->fr_offset,
+              0,
+              R_H8500_PCREL16);
 
       fragP->fr_fix += disp_size + inst_size;
       fragP->fr_var = 0;
@@ -1382,15 +1396,15 @@ md_convert_frag (headers, fragP)
       fragP->fr_fix += disp_size + inst_size;
       fragP->fr_var = 0;
     }
-
 }
 
-long
-DEFUN (md_section_align, (seg, size),
-       segT seg AND
-       long size)
+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]));
 
 }
 
@@ -1401,16 +1415,37 @@ md_apply_fix (fixP, val)
 {
   char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
 
-  switch (fixP->fx_size)
+  if (fixP->fx_r_type == 0)
     {
-    case 1:
+      fixP->fx_r_type = fixP->fx_size == 4 ? R_H8500_IMM32 : R_H8500_IMM16;
+    }
+
+  switch (fixP->fx_r_type)
+    {
+
+    case R_H8500_IMM8:
+    case R_H8500_PCREL8:
       *buf++ = val;
       break;
-    case 2:
+    case R_H8500_IMM16:
+    case R_H8500_LOW16:
+    case R_H8500_PCREL16:
       *buf++ = (val >> 8);
       *buf++ = val;
       break;
-    case 4:
+    case R_H8500_HIGH8:
+      *buf++ = val >> 16;
+      break;
+    case R_H8500_HIGH16:
+      *buf++ = val >> 24;
+      *buf++ = val >> 16;
+      break;
+    case R_H8500_IMM24:
+      *buf++ = (val >> 16);
+      *buf++ = (val >> 8);
+      *buf++ = val;
+      break;
+    case R_H8500_IMM32:
       *buf++ = (val >> 24);
       *buf++ = (val >> 16);
       *buf++ = (val >> 8);
@@ -1422,13 +1457,6 @@ md_apply_fix (fixP, val)
     }
 }
 
-void
-DEFUN (md_operand, (expressionP), expressionS * expressionP)
-{
-}
-
-int md_long_jump_size;
-
 /*
 called just before address relaxation, return the length
 by which a fragment must grow to reach it's destination
@@ -1438,14 +1466,12 @@ md_estimate_size_before_relax (fragP, segment_type)
      register fragS *fragP;
      register segT segment_type;
 {
-  int growth = 0;
-  char *buffer = fragP->fr_fix + fragP->fr_literal;
   int what = GET_WHAT (fragP->fr_subtype);
 
   switch (fragP->fr_subtype)
     {
-     default:
-      abort();
+    default:
+      abort ();
     case C (BRANCH, UNDEF_BYTE_DISP):
     case C (SCB_F, UNDEF_BYTE_DISP):
     case C (SCB_TST, UNDEF_BYTE_DISP):
@@ -1455,16 +1481,17 @@ md_estimate_size_before_relax (fragP, segment_type)
          /* Got a symbol and it's defined in this segment, become byte
         sized - maybe it will fix up */
          fragP->fr_subtype = C (what, BYTE_DISP);
+         fragP->fr_var = md_relax_table[C (what, BYTE_DISP)].rlx_length;
        }
       else
        {
          /* Its got a segment, but its not ours, so it will always be long */
          fragP->fr_subtype = C (what, UNDEF_WORD_DISP);
-         fragP->fr_var = md_relax_table[C(what, WORD_DISP)].rlx_length;
-         return md_relax_table[C(what, WORD_DISP)].rlx_length;
+         fragP->fr_var = md_relax_table[C (what, WORD_DISP)].rlx_length;
+         return md_relax_table[C (what, WORD_DISP)].rlx_length;
        }
     }
-  return fragP->fr_var + fragP->fr_fix;
+  return fragP->fr_var;
 }
 
 /* Put number into target byte order */
@@ -1472,35 +1499,47 @@ md_estimate_size_before_relax (fragP, segment_type)
 void
 md_number_to_chars (ptr, use, nbytes)
      char *ptr;
-     long use;
+     valueT use;
      int nbytes;
 {
-  switch (nbytes)
-    {
-    case 4:
-      *ptr++ = (use >> 24) & 0xff;
-    case 3:
-      *ptr++ = (use >> 16) & 0xff;
-    case 2:
-      *ptr++ = (use >> 8) & 0xff;
-    case 1:
-      *ptr++ = (use >> 0) & 0xff;
-      break;
-    default:
-      abort ();
-    }
+  number_to_chars_bigendian (ptr, use, nbytes);
 }
+
 long
 md_pcrel_from (fixP)
      fixS *fixP;
-
 {
   return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
 }
 
+/*ARGSUSED*/
 void
-tc_coff_symbol_emit_hook ()
+tc_coff_symbol_emit_hook (ignore)
+     symbolS *ignore;
+{
+}
+
+short
+tc_coff_fix2rtype (fix_ptr)
+     fixS *fix_ptr;
 {
+  if (fix_ptr->fx_r_type == RELOC_32)
+    {
+      /* cons likes to create reloc32's whatever the size of the reloc..
+     */
+      switch (fix_ptr->fx_size)
+       {
+       case 2:
+         return R_H8500_IMM16;
+         break;
+       case 1:
+         return R_H8500_IMM8;
+         break;
+       default:
+         abort ();
+       }
+    }
+  return fix_ptr->fx_r_type;
 }
 
 void
@@ -1540,11 +1579,54 @@ tc_reloc_mangle (fix_ptr, intr, base)
   intr->r_vaddr = fix_ptr->fx_frag->fr_address + fix_ptr->fx_where + base;
   intr->r_offset = fix_ptr->fx_offset;
 
+  /* Turn the segment of the symbol into an offset.  */
   if (symbol_ptr)
-    intr->r_symndx = symbol_ptr->sy_number;
+    {
+      symbolS *dot;
+
+      dot = segment_info[S_GET_SEGMENT (symbol_ptr)].dot;
+      if (dot)
+       {
+         /*      intr->r_offset -=
+           segment_info[S_GET_SEGMENT(symbol_ptr)].scnhdr.s_paddr;*/
+         intr->r_offset += S_GET_VALUE (symbol_ptr);
+         intr->r_symndx = dot->sy_number;
+       }
+      else
+       {
+         intr->r_symndx = symbol_ptr->sy_number;
+       }
+
+    }
   else
-    intr->r_symndx = -1;
+    {
+      intr->r_symndx = -1;
+    }
 
 }
 
+
+
+int
+start_label (ptr)
+     char *ptr;
+{
+  /* Check for :s.w */
+  if (isalpha (ptr[1]) && ptr[2] == '.')
+    return 0;
+  /* Check for :s */
+  if (isalpha (ptr[1]) && !isalpha (ptr[2]))
+    return 0;
+  return 1;
+}
+
+
+int
+tc_coff_sizemachdep (frag)
+     fragS *frag;
+{
+  return md_relax_table[frag->fr_subtype].rlx_length;
+}
+
 /* end of tc-h8500.c */
+