* config/tc-mips.c (append_insn): Add jump address range overflow
[deliverable/binutils-gdb.git] / gas / config / tc-h8300.c
index 97a269528612f74afeb94cacf0c826bcfdebca87..b1f6ecbc2ce8827751b0a805341c9db46c3e3405 100644 (file)
@@ -1,6 +1,6 @@
 /* tc-h8300.c -- Assemble code for the Hitachi H8/300
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 2000
-   Free Software Foundation.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
    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"
 #define DEFINE_TABLE
 #define h8_opcodes ops
 #include "opcode/h8300.h"
-#include <ctype.h>
+#include "safe-ctype.h"
+
+#ifdef OBJ_ELF
+#include "elf/h8.h"
+#endif
 
 const char comment_chars[] = ";";
 const char line_comment_chars[] = "#";
@@ -54,12 +54,15 @@ int Smode;
 #define DSYMMODE (Hmode ? L_24 : L_16)
 int bsize = L_8;               /* default branch displacement */
 
-
 void
 h8300hmode ()
 {
   Hmode = 1;
   Smode = 0;
+#ifdef BFD_ASSEMBLER
+  if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300h))
+    as_warn (_("could not set architecture and machine"));
+#endif
 }
 
 void
@@ -67,7 +70,12 @@ h8300smode ()
 {
   Smode = 1;
   Hmode = 1;
+#ifdef BFD_ASSEMBLER
+  if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300s))
+    as_warn (_("could not set architecture and machine"));
+#endif
 }
+
 void
 sbranch (size)
      int size;
@@ -75,14 +83,14 @@ sbranch (size)
   bsize = size;
 }
 
-static void pint ()
+static void
+pint ()
 {
   cons (Hmode ? 4 : 2);
 }
 
 const pseudo_typeS md_pseudo_table[] =
 {
-
   {"h8300h", h8300hmode, 0},
   {"h8300s", h8300smode, 0},
   {"sbranch", sbranch, L_8},
@@ -111,12 +119,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 ()
 {
@@ -124,14 +129,18 @@ md_begin ()
   char prev_buffer[100];
   int idx = 0;
 
+#ifdef BFD_ASSEMBLER
+  if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300))
+    as_warn (_("could not set architecture and machine"));
+#endif
+
   opcode_hash_control = hash_new ();
   prev_buffer[0] = 0;
 
   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);
@@ -157,12 +166,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++;
@@ -171,17 +180,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;
@@ -200,8 +208,9 @@ struct h8_op
   ccr
 */
 
-/* try and parse a reg name, returns number of chars consumed */
-int
+/* Try to parse a reg name.  Return the number of chars consumed.  */
+
+static int
 parse_reg (src, mode, reg, direction)
      char *src;
      op_type *mode;
@@ -212,10 +221,10 @@ parse_reg (src, mode, reg, direction)
   char *end;
   int len;
 
-  /* Cribbed from get_symbol_end().  */
+  /* Cribbed from get_symbol_end.  */
   if (!is_name_beginner (*src) || *src == '\001')
     return 0;
-  end = src+1;
+  end = src + 1;
   while (is_part_of_name (*end) || *end == '\001')
     end++;
   len = end - src;
@@ -290,10 +299,10 @@ parse_reg (src, mode, reg, direction)
   return 0;
 }
 
-char *
+static char *
 parse_exp (s, op)
      char *s;
-     expressionS * op;
+     expressionS *op;
 {
   char *save = input_line_pointer;
   char *new;
@@ -321,7 +330,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
@@ -338,7 +347,7 @@ skip_colonthing (ptr, exp, mode)
            {
              *mode |= L_16;
            }
-         while (isdigit (*ptr))
+         while (ISDIGIT (*ptr))
            ptr++;
        }
     }
@@ -352,12 +361,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
 
    */
@@ -373,7 +382,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)
        {
@@ -393,7 +402,6 @@ colonmod24 (op, src)
 
 }
 
-
 static void
 get_operand (ptr, op, dst, direction)
      char **ptr;
@@ -410,8 +418,8 @@ get_operand (ptr, op, dst, direction)
 
   /* 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;
 
@@ -462,29 +470,24 @@ 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."));
          op->mode = RDDEC;
@@ -494,11 +497,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);
 
@@ -577,7 +579,6 @@ get_operand (ptr, op, dst, direction)
        }
     }
 
-
   if (*src == '#')
     {
       src++;
@@ -624,9 +625,7 @@ get_operand (ptr, op, dst, direction)
     }
 }
 
-
-static
-char *
+static char *
 get_operands (noperands, op_end, operand)
      unsigned int noperands;
      char *op_end;
@@ -653,8 +652,8 @@ get_operands (noperands, op_end, operand)
        {
          operand[1].mode = 0;
        }
-
       break;
+
     case 2:
       ptr++;
       get_operand (&ptr, operand + 0, 0, SRC);
@@ -667,16 +666,13 @@ 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 *
+   provided.  */
+static struct h8_opcode *
 get_specific (opcode, operands, size)
      struct h8_opcode *opcode;
      struct h8_op *operands;
@@ -732,7 +728,7 @@ get_specific (opcode, operands, size)
 
                  opsize = op & SIZE;
 
-                 /* The size of the reg is v important */
+                 /* The size of the reg is v important */
                  if ((op & SIZE) != (x & SIZE))
                    found = 0;
                }
@@ -740,7 +736,7 @@ get_specific (opcode, operands, size)
                {
                  operands[i].mode &= ~ABS;
                  operands[i].mode |= ABSJMP;
-                 /* But it may not be 24 bits long */
+                 /* But it may not be 24 bits long */
                  if (!Hmode)
                    {
                      operands[i].mode &= ~SIZE;
@@ -749,11 +745,11 @@ get_specific (opcode, operands, size)
                }
              else if ((op & (KBIT | DBIT)) && (x & IMM))
                {
-                 /* This is ok if the immediate value is sensible */
+                 /* This is ok if the immediate value is sensible */
                }
              else if (op & PCREL)
                {
-                 /* The size of the displacement is important */
+                 /* The size of the displacement is important */
                  if ((op & SIZE) != (x & SIZE))
                    found = 0;
                }
@@ -767,10 +763,10 @@ get_specific (opcode, operands, size)
                      x |= L_32;
                    }
                  /* Promote an L8 to L_16 if it makes us match.  */
-                 if (op & ABS && op & L_8 && op & DISP) 
+                 if (op & ABS && op & L_8 && op & DISP)
                    {
                      if (x & L_16)
-                       found= 1;
+                       found = 1;
                    }
                  else if ((x & SIZE) != 0
                           && ((op & SIZE) != (x & SIZE)))
@@ -783,7 +779,7 @@ get_specific (opcode, operands, size)
              else if ((op & MODE) != (x & MODE))
                {
                  found = 0;
-               }       
+               }
            }
        }
     }
@@ -802,29 +798,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,
                       (unsigned long) operand->exp.X_add_number);
            }
        }
     }
-
 }
 
 /* RELAXMODE has one of 3 values:
@@ -847,7 +842,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,7 +874,7 @@ 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;
@@ -892,13 +886,11 @@ do_a_fix_imm (offset, operand, relaxmode)
            }
          break;
        }
-
     }
   else
     {
       switch (operand->mode & SIZE)
        {
-
        case L_24:
        case L_32:
          size = 4;
@@ -911,7 +903,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;
@@ -937,11 +929,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;
@@ -977,7 +967,6 @@ build_bytes (this_try, operand)
        }
       else
        {
-
          if (c & (REG | IND | INC | DEC))
            {
              nib = operand[d].reg;
@@ -986,7 +975,7 @@ build_bytes (this_try, operand)
            {
              nib = dispreg;
            }
-         else if (c &  ABS )
+         else if (c & ABS)
            {
              operand[d].mode = c;
              absat = nibble_count / 2;
@@ -1036,7 +1025,7 @@ build_bytes (this_try, operand)
                  as_bad (_("Need #1 or #2 here"));
                  break;
                }
-             /* stop it making a fix */
+             /* Stop it making a fix.  */
              operand[0].mode = 0;
            }
 
@@ -1052,7 +1041,12 @@ build_bytes (this_try, operand)
 
          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;
            }
        }
       nibble_count++;
@@ -1083,7 +1077,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;
@@ -1104,6 +1098,7 @@ build_bytes (this_try, operand)
          int where = size16 ? 2 : 1;
          int size = size16 ? 2 : 1;
          int type = size16 ? R_PCRWORD : R_PCRBYTE;
+         fixS *fixP;
 
          check_operand (operand + i, size16 ? 0x7fff : 0x7f, "@");
 
@@ -1113,20 +1108,28 @@ build_bytes (this_try, operand)
                       (unsigned long) operand->exp.X_add_number);
            }
 
+#ifndef OBJ_ELF
+         /* The COFF port has always been off by one, changing it
+            now would be an incompatible change, so we leave it as-is.
+
+            We don't want to do this for ELF as we want to be
+            compatible with the proposed ELF format from Hitachi.  */
          operand[i].exp.X_add_number -= 1;
+#endif
+
          operand[i].exp.X_add_number =
            ((operand[i].exp.X_add_number & 0xff) ^ 0x80) - 0x80;
 
-         fix_new_exp (frag_now,
-                      output - frag_now->fr_literal + where,
-                      size,
-                      &operand[i].exp,
-                      1,
-                      type);
+         fixP = fix_new_exp (frag_now,
+                             output - frag_now->fr_literal + where,
+                             size,
+                             &operand[i].exp,
+                             1,
+                             type);
+         fixP->fx_signed = 1;
        }
       else if (x & MEMIND)
        {
-
          check_operand (operand + i, 0xff, "@@");
          fix_new_exp (frag_now,
                       output - frag_now->fr_literal + 1,
@@ -1137,7 +1140,16 @@ build_bytes (this_try, operand)
        }
       else if (x & ABSJMP)
        {
-         /* This jmp may be a jump or a branch */
+         int where = 0;
+
+#ifdef OBJ_ELF
+         /* To be compatible with the proposed H8 ELF format, we
+            want the relocation's offset to point to the first byte
+            that will be modified, not to the start of the instruction.  */
+         where += 1;
+#endif
+
+         /* This jmp may be a jump or a branch.  */
 
          check_operand (operand + i, Hmode ? 0xffffff : 0xffff, "@");
          if (operand[i].exp.X_add_number & 1)
@@ -1146,37 +1158,33 @@ build_bytes (this_try, operand)
                       (unsigned long) operand->exp.X_add_number);
            }
          if (!Hmode)
-           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,
+                      output - frag_now->fr_literal + where,
                       4,
                       &operand[i].exp,
                       0,
                       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])
@@ -1191,7 +1199,6 @@ clever_message (opcode, operand)
              break;
 
            case RS8:
-
              if (operand[argn].mode != RS8)
                {
                  as_bad (_("source operand must be 8 bit register"));
@@ -1214,7 +1221,6 @@ clever_message (opcode, operand)
                }
              break;
 
-
            case ABS16SRC:
              if (operand[argn].mode != ABS16SRC)
                {
@@ -1229,13 +1235,9 @@ clever_message (opcode, operand)
   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;
@@ -1250,11 +1252,11 @@ md_assemble (str)
   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++)
@@ -1268,8 +1270,6 @@ md_assemble (str)
        }
     }
 
-  ;
-
   if (op_end == op_start)
     {
       as_bad (_("can't find opcode "));
@@ -1287,7 +1287,7 @@ md_assemble (str)
       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);
@@ -1316,7 +1316,7 @@ md_assemble (str)
 
   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;
@@ -1334,15 +1334,16 @@ md_assemble (str)
     }
 
   build_bytes (opcode, operand);
-
 }
 
+#ifndef BFD_ASSEMBLER
 void
 tc_crawl_symbol_chain (headers)
-     object_headers * headers ATTRIBUTE_UNUSED;
+     object_headers *headers ATTRIBUTE_UNUSED;
 {
   printf (_("call to tc_crawl_symbol_chain \n"));
 }
+#endif
 
 symbolS *
 md_undefined_symbol (name)
@@ -1351,21 +1352,24 @@ md_undefined_symbol (name)
   return 0;
 }
 
+#ifndef BFD_ASSEMBLER
 void
 tc_headers_hook (headers)
-     object_headers * headers ATTRIBUTE_UNUSED;
+     object_headers *headers ATTRIBUTE_UNUSED;
 {
   printf (_("call to tc_headers_hook \n"));
 }
+#endif
 
 /* 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;
@@ -1425,7 +1429,8 @@ 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)
@@ -1450,7 +1455,11 @@ tc_aout_fix_to_chars ()
 
 void
 md_convert_frag (headers, seg, fragP)
+#ifdef BFD_ASSEMBLER
+     bfd *headers ATTRIBUTE_UNUSED;
+#else
      object_headers *headers ATTRIBUTE_UNUSED;
+#endif
      segT seg ATTRIBUTE_UNUSED;
      fragS *fragP ATTRIBUTE_UNUSED;
 {
@@ -1458,21 +1467,35 @@ md_convert_frag (headers, seg, fragP)
   abort ();
 }
 
-valueT 
+#ifdef BFD_ASSEMBLER
+valueT
+md_section_align (segment, size)
+     segT segment;
+     valueT size;
+{
+  int align = bfd_get_section_alignment (stdoutput, segment);
+  return ((size + (1 << align) - 1) & (-1 << align));
+}
+#else
+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]));
 }
+#endif
+
 
 void
-md_apply_fix (fixP, val)
+md_apply_fix3 (fixP, valP, seg)
      fixS *fixP;
-     long val;
+     valueT *valP;
+     segT seg ATTRIBUTE_UNUSED;
 {
   char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
+  long val = * (long *) valP;
 
   switch (fixP->fx_size)
     {
@@ -1492,6 +1515,9 @@ md_apply_fix (fixP, val)
     default:
       abort ();
     }
+
+  if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
+    fixP->fx_done = 1;
 }
 
 int
@@ -1503,8 +1529,7 @@ md_estimate_size_before_relax (fragP, segment_type)
   abort ();
 }
 
-/* Put number into target byte order */
-
+/* Put number into target byte order.  */
 void
 md_number_to_chars (ptr, use, nbytes)
      char *ptr;
@@ -1513,6 +1538,7 @@ md_number_to_chars (ptr, use, nbytes)
 {
   number_to_chars_bigendian (ptr, use, nbytes);
 }
+
 long
 md_pcrel_from (fixP)
      fixS *fixP ATTRIBUTE_UNUSED;
@@ -1520,7 +1546,7 @@ md_pcrel_from (fixP)
   abort ();
 }
 
-
+#ifndef BFD_ASSEMBLER
 void
 tc_reloc_mangle (fix_ptr, intr, base)
      fixS *fix_ptr;
@@ -1533,7 +1559,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..
@@ -1551,9 +1577,7 @@ tc_reloc_mangle (fix_ptr, intr, base)
          break;
        default:
          abort ();
-
        }
-
     }
   else
     {
@@ -1584,8 +1608,49 @@ tc_reloc_mangle (fix_ptr, intr, base)
     }
   else
     intr->r_symndx = -1;
+}
+#else /* BFD_ASSEMBLER */
+arelent *
+tc_gen_reloc (section, fixp)
+     asection *section ATTRIBUTE_UNUSED;
+     fixS *fixp;
+{
+  arelent *rel;
+  bfd_reloc_code_real_type r_type;
 
+  if (fixp->fx_addsy && fixp->fx_subsy)
+    {
+      if ((S_GET_SEGMENT (fixp->fx_addsy) != S_GET_SEGMENT (fixp->fx_subsy))
+         || S_GET_SEGMENT (fixp->fx_addsy) == undefined_section)
+       {
+         as_bad_where (fixp->fx_file, fixp->fx_line,
+                       "Difference of symbols in different sections is not supported");
+         return NULL;
+       }
+    }
 
-}
+  rel = (arelent *) xmalloc (sizeof (arelent));
+  rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
+  *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
+  rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
+  rel->addend = fixp->fx_offset;
+
+  r_type = fixp->fx_r_type;
+
+#define DEBUG 0
+#if DEBUG
+  fprintf (stderr, "%s\n", bfd_get_reloc_code_name (r_type));
+  fflush(stderr);
+#endif
+  rel->howto = bfd_reloc_type_lookup (stdoutput, r_type);
+  if (rel->howto == NULL)
+    {
+      as_bad_where (fixp->fx_file, fixp->fx_line,
+                   _("Cannot represent relocation type %s"),
+                   bfd_get_reloc_code_name (r_type));
+      return NULL;
+    }
 
-/* end of tc-h8300.c */
+  return rel;
+}
+#endif
This page took 0.035104 seconds and 4 git commands to generate.