Locale changes from Bruno Haible <haible@clisp.cons.org>.
[deliverable/binutils-gdb.git] / gas / config / tc-i960.c
index 57158c55507ec3c52a779527efa33678f9788570..279c2143c024d1053265fb7609c18d74f0af44c5 100644 (file)
@@ -1,6 +1,7 @@
-/* to sanitize : grep -v XL */
 /* tc-i960.c - All the i80960-specific stuff
-   Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000, 2001
+   Free Software Foundation, Inc.
 
    This file is part of GAS.
 
    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.  */
 
-/* See comment on md_parse_option for 80960-specific invocation options. */
+/* See comment on md_parse_option for 80960-specific invocation options.  */
 
 /* There are 4 different lengths of (potentially) symbol-based displacements
    in the 80960 instruction set, each of which could require address fix-ups
         a relocation directive.  */
 
 #include <stdio.h>
-#include <ctype.h>
 
 #include "as.h"
 
+#include "safe-ctype.h"
 #include "obstack.h"
 
 #include "opcode/i960.h"
 #define TC_S_FORCE_TO_SYSPROC(s)       (S_SET_STORAGE_CLASS((s), C_SCALL))
 
 #else /* ! OBJ_COFF */
-you lose;
+#ifdef OBJ_ELF
+#define TC_S_IS_SYSPROC(s)     0
+
+#define TC_S_IS_BALNAME(s)     0
+#define TC_S_IS_CALLNAME(s)    0
+#define TC_S_IS_BADPROC(s)     0
+
+#define TC_S_SET_SYSPROC(s, p)
+#define TC_S_GET_SYSPROC(s) 0
+
+#define TC_S_FORCE_TO_BALNAME(s)
+#define TC_S_FORCE_TO_CALLNAME(s)
+#define TC_S_FORCE_TO_SYSPROC(s)
+#else
+ #error COFF, a.out, b.out, and ELF are the only supported formats.
+#endif /* ! OBJ_ELF */
 #endif /* ! OBJ_COFF */
 #endif /* ! OBJ_A/BOUT */
 
@@ -162,11 +179,11 @@ const char comment_chars[] = "#";
    #NO_APP at the beginning of its output.
  */
 
-/* Also note that comments started like this one will always work. */
+/* Also note that comments started like this one will always work.  */
 
-const char line_comment_chars[1];
+const char line_comment_chars[] = "";
 
-const char line_separator_chars[1];
+const char line_separator_chars[] = ";";
 
 /* Chars that can be used to separate mant from exp in floating point nums */
 const char EXP_CHARS[] = "eE";
@@ -176,7 +193,6 @@ const char EXP_CHARS[] = "eE";
  */
 const char FLT_CHARS[] = "fFdDtT";
 
-
 /* Table used by base assembler to relax addresses based on varying length
    instructions.  The fields are:
      1) most positive reach of this state,
@@ -226,13 +242,11 @@ const pseudo_typeS md_pseudo_table[] =
 #define adds(e)        e.X_add_symbol
 #define offs(e)        e.X_add_number
 
-
 /* Branch-prediction bits for CTRL/COBR format opcodes */
 #define BP_MASK                0x00000002      /* Mask for branch-prediction bit */
 #define BP_TAKEN       0x00000000      /* Value to OR in to predict branch */
 #define BP_NOT_TAKEN   0x00000002      /* Value to OR in to predict no branch */
 
-
 /* Some instruction opcodes that we need explicitly */
 #define BE     0x12000000
 #define BG     0x11000000
@@ -252,14 +266,12 @@ const pseudo_typeS md_pseudo_table[] =
 #define CALLS  0x66003800
 #define RET    0x0a000000
 
-
-/* These masks are used to build up a set of MEMB mode bits. */
+/* These masks are used to build up a set of MEMB mode bits.  */
 #define        A_BIT           0x0400
 #define        I_BIT           0x0800
 #define MEMB_BIT       0x1000
 #define        D_BIT           0x2000
 
-
 /* Mask for the only mode bit in a MEMA instruction (if set, abase reg is
    used).  */
 #define MEMA_ABASE     0x2000
@@ -278,7 +290,6 @@ typedef struct
 
 memS;
 
-
 /* The two pieces of info we need to generate a register operand */
 struct regop
   {
@@ -287,7 +298,6 @@ struct regop
     int n;                     /* Register number or literal value */
   };
 
-
 /* Number and assembler mnemonic for all registers that can appear in
    operands.  */
 static const struct
@@ -433,28 +443,25 @@ aregs[] =
   { NULL, 0 },                         /* END OF LIST */
 };
 
-
 /* Hash tables */
 static struct hash_control *op_hash;   /* Opcode mnemonics */
 static struct hash_control *reg_hash;  /* Register name hash table */
 static struct hash_control *areg_hash; /* Abase register hash table */
 
-
 /* Architecture for which we are assembling */
 #define ARCH_ANY       0       /* Default: no architecture checking done */
 #define ARCH_KA                1
 #define ARCH_KB                2
 #define ARCH_MC                3
 #define ARCH_CA                4
-#define ARCH_HX                5
-#define ARCH_XL                6
+#define ARCH_JX                5
+#define ARCH_HX                6
 int architecture = ARCH_ANY;   /* Architecture requested on invocation line */
 int iclasses_seen;             /* OR of instruction classes (I_* constants)
                                 *    for which we've actually assembled
                                 *      instructions.
                                 */
 
-
 /* BRANCH-PREDICTION INSTRUMENTATION
 
         The following supports generation of branch-prediction instrumentation
@@ -540,7 +547,7 @@ md_begin ()
                          (char *) &aregs[i].areg_num);
 
   if (retval)
-    as_fatal ("Hashing returned \"%s\".", retval);
+    as_fatal (_("Hashing returned \"%s\"."), retval);
 }
 
 /*****************************************************************************
@@ -574,8 +581,7 @@ md_assemble (textP)
 
   int n;                       /* Offset of last character in opcode mnemonic */
 
-  static const char bp_error_msg[] = "branch prediction invalid on this opcode";
-
+  const char *bp_error_msg = _("branch prediction invalid on this opcode");
 
   /* Parse instruction into opcode and operands */
   memset (args, '\0', sizeof (args));
@@ -595,8 +601,6 @@ md_assemble (textP)
        }
     }
 
-
-
   /* Check for branch-prediction suffix on opcode mnemonic, strip it off */
   n = strlen (args[0]) - 1;
   branch_predict = 0;
@@ -617,12 +621,12 @@ md_assemble (textP)
   oP = (struct i960_opcode *) hash_find (op_hash, args[0]);
   if (!oP || !targ_has_iclass (oP->iclass))
     {
-      as_bad ("invalid opcode, \"%s\".", args[0]);
+      as_bad (_("invalid opcode, \"%s\"."), args[0]);
 
     }
   else if (n_ops != oP->num_ops)
     {
-      as_bad ("improper number of operands.  expecting %d, got %d",
+      as_bad (_("improper number of operands.  expecting %d, got %d"),
              oP->num_ops, n_ops);
     }
   else
@@ -719,9 +723,8 @@ md_chars_to_number (val, n)
   return retval;
 }
 
-
 #define MAX_LITTLENUMS 6
-#define LNUM_SIZE      sizeof(LITTLENUM_TYPE)
+#define LNUM_SIZE      sizeof (LITTLENUM_TYPE)
 
 /*****************************************************************************
    md_atof:    convert ascii to floating point
@@ -767,7 +770,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);
@@ -792,7 +795,6 @@ md_atof (type, litP, sizeP)
   return 0;
 }
 
-
 /*****************************************************************************
    md_number_to_imm
 
@@ -806,7 +808,6 @@ md_number_to_imm (buf, val, n)
   md_number_to_chars (buf, val, n);
 }
 
-
 /*****************************************************************************
    md_number_to_disp
 
@@ -857,7 +858,7 @@ md_number_to_field (instrP, val, bfixP)
   if (((val < 0) && (sign != -1))
       || ((val > 0) && (sign != 0)))
     {
-      as_bad ("Fixup of %ld too large for field width of %d",
+      as_bad (_("Fixup of %ld too large for field width of %d"),
              val, numbits);
     }
   else
@@ -902,7 +903,6 @@ md_number_to_field (instrP, val, bfixP)
 
                A table of all such "Labels" is also generated.
 
-
        -AKA, -AKB, -AKC, -ASA, -ASB, -AMC, -ACA:
                Select the 80960 architecture.  Instructions or features not
                supported by the selected architecture cause fatal errors.
@@ -939,8 +939,8 @@ static const struct tabentry arch_tab[] =
   {"KC", ARCH_MC},             /* Synonym for MC */
   {"MC", ARCH_MC},
   {"CA", ARCH_CA},
+  {"JX", ARCH_JX},
   {"HX", ARCH_HX},
-  {"XL", ARCH_XL},
   {NULL, 0}
 };
 
@@ -975,7 +975,7 @@ md_parse_option (c, arg)
 
        if (tp->flag == NULL)
          {
-           as_bad ("invalid architecture %s", p);
+           as_bad (_("invalid architecture %s"), p);
            return 0;
          }
        else
@@ -995,20 +995,19 @@ md_show_usage (stream)
      FILE *stream;
 {
   int i;
-  fprintf (stream, "I960 options:\n");
+  fprintf (stream, _("I960 options:\n"));
   for (i = 0; arch_tab[i].flag; i++)
     fprintf (stream, "%s-A%s", i ? " | " : "", arch_tab[i].flag);
-  fprintf (stream, "\n\
+  fprintf (stream, _("\n\
                        specify variant of 960 architecture\n\
 -b                     add code to collect statistics about branches taken\n\
 -link-relax            preserve individual alignment directives so linker\n\
                        can do relaxing (b.out format only)\n\
 -no-relax              don't alter compare-and-branch instructions for\n\
-                       long displacements\n");
+                       long displacements\n"));
 }
 \f
 
-#ifndef BFD_ASSEMBLER
 /*****************************************************************************
    md_convert_frag:
        Called by base assembler after address relaxation is finished:  modify
@@ -1022,11 +1021,19 @@ md_show_usage (stream)
        Replace the cobr with a two instructions (a compare and a branch).
 
   *************************************************************************** */
+#ifndef BFD_ASSEMBLER
 void
 md_convert_frag (headers, seg, fragP)
      object_headers *headers;
      segT seg;
      fragS *fragP;
+#else
+void
+md_convert_frag (abfd, sec, fragP)
+     bfd *abfd;
+     segT sec;
+     fragS *fragP;
+#endif
 {
   fixS *fixP;                  /* Structure describing needed address fix */
 
@@ -1081,6 +1088,7 @@ md_estimate_size_before_relax (fragP, segment_type)
   return 0;
 }                              /* md_estimate_size_before_relax() */
 
+#if defined(OBJ_AOUT) | defined(OBJ_BOUT)
 
 /*****************************************************************************
    md_ri_to_chars:
@@ -1095,7 +1103,8 @@ md_estimate_size_before_relax (fragP, segment_type)
        does do the reordering (Ian Taylor 28 Aug 92).
 
   *************************************************************************** */
-void
+
+static void
 md_ri_to_chars (where, ri)
      char *where;
      struct relocation_info *ri;
@@ -1113,34 +1122,8 @@ md_ri_to_chars (where, ri)
              | (ri->r_callj << 6));
 }
 
-#ifndef WORKING_DOT_WORD
-
-int md_short_jump_size = 0;
-int md_long_jump_size = 0;
+#endif /* defined(OBJ_AOUT) | defined(OBJ_BOUT) */
 
-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.");
-}
-
-#endif
-#endif /* BFD_ASSEMBLER */
 \f
 /* FOLLOWING ARE THE LOCAL ROUTINES, IN ALPHABETICAL ORDER  */
 
@@ -1205,7 +1188,7 @@ brtab_emit ()
     }
 
   subseg_set (data_section, 0);        /*      .data */
-  frag_align (2, 0);           /*      .align 2 */
+  frag_align (2, 0, 0);                /*      .align 2 */
   record_alignment (now_seg, 2);
   colon (BR_TAB_NAME);         /* BR_TAB_NAME: */
   emit (0);                    /*      .word 0 #link to next table */
@@ -1222,7 +1205,6 @@ brtab_emit ()
                      0,
                      0,
                      NO_RELOC);
-      fixP->fx_im_disp = 2;    /* 32-bit displacement fix */
     }
 }
 
@@ -1266,7 +1248,6 @@ cobr_fmt (arg, opcode, oP)
       instr |= (regop.n << 14) | regop.special;
     }
 
-
   if (n < 3)
     {
       emit (instr);
@@ -1295,7 +1276,6 @@ cobr_fmt (arg, opcode, oP)
     }
 }                              /* cobr_fmt() */
 
-
 /*****************************************************************************
    ctrl_fmt:   generate a CTRL-format instruction
 
@@ -1311,7 +1291,6 @@ ctrl_fmt (targP, opcode, num_ops)
                                   * how often the branch is taken
                                 */
 
-
   if (num_ops == 0)
     {
       emit (opcode);           /* Output opcode */
@@ -1341,7 +1320,6 @@ ctrl_fmt (targP, opcode, num_ops)
 
 }
 
-
 /*****************************************************************************
    emit:       output instruction binary
 
@@ -1361,7 +1339,6 @@ emit (instr)
   return toP;
 }
 
-
 /*****************************************************************************
    get_args:   break individual arguments out of comma-separated list
 
@@ -1412,7 +1389,8 @@ get_args (p, args)
     {
 
       if (*p == ' '
-         && (! isalnum (p[1]) || ! isalnum (p[-1])))
+         && (! ISALNUM (p[1])
+             || ! ISALNUM (p[-1])))
        {
          p++;
 
@@ -1423,7 +1401,7 @@ get_args (p, args)
          /* Start of operand */
          if (n == 3)
            {
-             as_bad ("too many operands");
+             as_bad (_("too many operands"));
              return -1;
            }
          *to++ = '\0';         /* Terminate argument */
@@ -1440,7 +1418,6 @@ get_args (p, args)
   return n;
 }
 
-
 /*****************************************************************************
    get_cdisp:  handle displacement for a COBR or CTRL instruction.
 
@@ -1483,7 +1460,7 @@ get_cdisp (dispP, ifmtP, instr, numbits, var_frag, callj)
   switch (e.X_op)
     {
     case O_illegal:
-      as_bad ("expression syntax error");
+      as_bad (_("expression syntax error"));
 
     case O_symbol:
       if (S_GET_SEGMENT (e.X_add_symbol) == now_seg
@@ -1521,16 +1498,15 @@ get_cdisp (dispP, ifmtP, instr, numbits, var_frag, callj)
            }
        }
       else
-       as_bad ("attempt to branch into different segment");
+       as_bad (_("attempt to branch into different segment"));
       break;
 
     default:
-      as_bad ("target of %s instruction must be a label", ifmtP);
+      as_bad (_("target of %s instruction must be a label"), ifmtP);
       break;
     }
 }
 
-
 /*****************************************************************************
    get_ispec:  parse a memory operand for an index specification
 
@@ -1565,7 +1541,7 @@ get_ispec (textP)
 
       if (end == NULL)
        {
-         as_bad ("unmatched '['");
+         as_bad (_("unmatched '['"));
 
        }
       else
@@ -1576,7 +1552,7 @@ get_ispec (textP)
          *end = '\0';
          if (*(end + 1) != '\0')
            {
-             as_bad ("garbage after index spec ignored");
+             as_bad (_("garbage after index spec ignored"));
            }
        }
     }
@@ -1601,7 +1577,6 @@ get_regnum (regname)
   return (rP == NULL) ? -1 : *rP;
 }
 
-
 /*****************************************************************************
    i_scan:     perform lexical scan of ascii assembler instruction.
 
@@ -1622,7 +1597,7 @@ get_regnum (regname)
   *************************************************************************** */
 static int
 i_scan (iP, args)
-     /* Pointer to ascii instruction;  MUCKED BY US. */
+     /* Pointer to ascii instruction;  MUCKED BY US.  */
      register char *iP;
      /* Output arg: pointers to opcode and operands placed here.  MUST
        ACCOMMODATE 4 ENTRIES.  */
@@ -1643,7 +1618,7 @@ i_scan (iP, args)
          if (args[0] == iP)
            {
              /* We never moved: there was no opcode either! */
-             as_bad ("missing opcode");
+             as_bad (_("missing opcode"));
              return -1;
            }
          return 0;
@@ -1653,7 +1628,6 @@ i_scan (iP, args)
   return (get_args (iP, args));
 }                              /* i_scan() */
 
-
 /*****************************************************************************
    mem_fmt:    generate a MEMA- or MEMB-format instruction
 
@@ -1681,7 +1655,7 @@ mem_fmt (args, oP, callx)
   memset (&instr, '\0', sizeof (memS));
   instr.opcode = oP->opcode;
 
-  /* Process operands. */
+  /* Process operands.  */
   for (i = 1; i <= oP->num_ops; i++)
     {
       opdesc = oP->operand[i - 1];
@@ -1697,6 +1671,10 @@ mem_fmt (args, oP, callx)
        }
     }
 
+  /* Parse the displacement; this must be done before emitting the
+     opcode, in case it is an expression using `.'.  */
+  parse_expr (instr.e, &expr);
+
   /* Output opcode */
   outP = emit (instr.opcode);
 
@@ -1705,12 +1683,11 @@ mem_fmt (args, oP, callx)
       return;
     }
 
-  /* Parse and process the displacement */
-  parse_expr (instr.e, &expr);
+  /* Process the displacement */
   switch (expr.X_op)
     {
     case O_illegal:
-      as_bad ("expression syntax error");
+      as_bad (_("expression syntax error"));
       break;
 
     case O_constant:
@@ -1761,7 +1738,6 @@ mem_fmt (args, oP, callx)
                          &expr,
                          0,
                          NO_RELOC);
-      fixP->fx_im_disp = 2;    /* 32-bit displacement fix */
       /* Steve's linker relaxing hack.  Mark this 32-bit relocation as
          being in the instruction stream, specifically as part of a callx
          instruction.  */
@@ -1770,7 +1746,6 @@ mem_fmt (args, oP, callx)
     }
 }                              /* memfmt() */
 
-
 /*****************************************************************************
    mema_to_memb:       convert a MEMA-format opcode to a MEMB-format opcode.
 
@@ -1803,7 +1778,6 @@ mema_to_memb (opcodeP)
   md_number_to_chars (opcodeP, opcode, 4);
 }                              /* mema_to_memb() */
 
-
 /*****************************************************************************
    parse_expr:         parse an expression
 
@@ -1840,7 +1814,7 @@ parse_expr (textP, expP)
       input_line_pointer = textP;      /* Make parser work for us */
 
       (void) expression (expP);
-      if (input_line_pointer - textP != strlen (textP))
+      if ((size_t) (input_line_pointer - textP) != strlen (textP))
        {
          /* Did not consume all of the input */
          expP->X_op = O_illegal;
@@ -1857,7 +1831,6 @@ parse_expr (textP, expP)
     }
 }
 
-
 /*****************************************************************************
    parse_ldcont:
        Parse and replace a 'ldconst' pseudo-instruction with an appropriate
@@ -1884,7 +1857,6 @@ parse_ldconst (arg)
   static char buf2[5];         /* Literal for second operand */
   expressionS e;               /* Parsed expression */
 
-
   arg[3] = NULL;               /* So we can tell at the end if it got used or not */
 
   parse_expr (arg[1], &e);
@@ -1949,7 +1921,7 @@ parse_ldconst (arg)
       break;
 
     case O_illegal:
-      as_bad ("invalid constant");
+      as_bad (_("invalid constant"));
       return -1;
       break;
     }
@@ -2019,7 +1991,6 @@ parse_memop (memP, argP, optype)
     16                         /* MEM16 */
   };
 
-
   iprel_flag = mode = 0;
 
   /* Any index present? */
@@ -2062,7 +2033,7 @@ parse_memop (memP, argP, optype)
       regnum = get_regnum (indexP);    /* Get index reg. # */
       if (!IS_RG_REG (regnum))
        {
-         as_bad ("invalid index register");
+         as_bad (_("invalid index register"));
          return;
        }
 
@@ -2085,7 +2056,7 @@ parse_memop (memP, argP, optype)
          scale = 4 << 7;
          break;
        default:
-         as_bad ("invalid scale factor");
+         as_bad (_("invalid scale factor"));
          return;
        };
 
@@ -2207,7 +2178,7 @@ parse_po (po_num)
 
   extern char is_end_of_line[];
 
-  /* Advance input pointer to end of line. */
+  /* Advance input pointer to end of line.  */
   p = input_line_pointer;
   while (!is_end_of_line[(unsigned char) *input_line_pointer])
     {
@@ -2268,7 +2239,7 @@ parse_regop (regopP, optext, opdesc)
          /* global or local register */
          if (!REG_ALIGN (opdesc, n))
            {
-             as_bad ("unaligned register");
+             as_bad (_("unaligned register"));
            }
          regopP->n = n;
          regopP->mode = 0;
@@ -2291,7 +2262,7 @@ parse_regop (regopP, optext, opdesc)
          regopP->special = 1;
          if (!targ_has_sfr (regopP->n))
            {
-             as_bad ("no such sfr in this architecture");
+             as_bad (_("no such sfr in this architecture"));
            }
          return;
        }
@@ -2329,7 +2300,7 @@ parse_regop (regopP, optext, opdesc)
          if (e.X_op != O_constant
              || (offs (e) < 0) || (offs (e) > 31))
            {
-             as_bad ("illegal literal");
+             as_bad (_("illegal literal"));
              offs (e) = 0;
            }
          regopP->n = offs (e);
@@ -2357,7 +2328,6 @@ reg_fmt (args, oP)
   struct regop regop;          /* Description of register operand */
   int n_ops;                   /* Number of operands */
 
-
   instr = oP->opcode;
   n_ops = oP->num_ops;
 
@@ -2424,7 +2394,6 @@ reg_fmt (args, oP)
   emit (instr);
 }
 
-
 /*****************************************************************************
    relax_cobr:
        Replace cobr instruction in a code fragment with equivalent branch and
@@ -2511,7 +2480,6 @@ relax_cobr (fragP)
   frag_wane (fragP);
 }
 
-
 /*****************************************************************************
    reloc_callj:        Relocate a 'callj' instruction
 
@@ -2562,7 +2530,7 @@ reloc_callj (fixP)
   else if (TC_S_IS_CALLNAME (fixP->fx_addsy))
     {
       /* Should not happen: see block comment above */
-      as_fatal ("Trying to 'bal' to %s", S_GET_NAME (fixP->fx_addsy));
+      as_fatal (_("Trying to 'bal' to %s"), S_GET_NAME (fixP->fx_addsy));
     }
   else if (TC_S_IS_BALNAME (fixP->fx_addsy))
     {
@@ -2573,13 +2541,12 @@ reloc_callj (fixP)
     }
   else if (TC_S_IS_BADPROC (fixP->fx_addsy))
     {
-      as_bad ("Looks like a proc, but can't tell what kind.\n");
+      as_bad (_("Looks like a proc, but can't tell what kind.\n"));
     }                          /* switch on proc type */
 
   /* else Symbol is neither a sysproc nor a leafproc */
 }
 
-
 /*****************************************************************************
    s_leafproc: process .leafproc pseudo-op
 
@@ -2605,16 +2572,16 @@ s_leafproc (n_ops, args)
 
   if ((n_ops != 1) && (n_ops != 2))
     {
-      as_bad ("should have 1 or 2 operands");
+      as_bad (_("should have 1 or 2 operands"));
       return;
     }                          /* Check number of arguments */
 
-  /* Find or create symbol for 'call' entry point. */
+  /* Find or create symbol for 'call' entry point.  */
   callP = symbol_find_or_make (args[1]);
 
   if (TC_S_IS_CALLNAME (callP))
     {
-      as_warn ("Redefining leafproc %s", S_GET_NAME (callP));
+      as_warn (_("Redefining leafproc %s"), S_GET_NAME (callP));
     }                          /* is leafproc */
 
   /* If that was the only argument, use it as the 'bal' entry point.
@@ -2633,15 +2600,16 @@ s_leafproc (n_ops, args)
       balP = symbol_find_or_make (args[2]);
       if (TC_S_IS_CALLNAME (balP))
        {
-         as_warn ("Redefining leafproc %s", S_GET_NAME (balP));
+         as_warn (_("Redefining leafproc %s"), S_GET_NAME (balP));
        }
       TC_S_FORCE_TO_BALNAME (balP);
 
+#ifndef OBJ_ELF
       tc_set_bal_of_call (callP, balP);
+#endif
     }                          /* if only one arg, or the args are the same */
 }
 
-
 /*
    s_sysproc: process .sysproc pseudo-op
 
@@ -2663,17 +2631,17 @@ s_sysproc (n_ops, args)
 
   if (n_ops != 2)
     {
-      as_bad ("should have two operands");
+      as_bad (_("should have two operands"));
       return;
     }                          /* bad arg count */
 
-  /* Parse "entry_num" argument and check it for validity. */
+  /* Parse "entry_num" argument and check it for validity.  */
   parse_expr (args[2], &exp);
   if (exp.X_op != O_constant
       || (offs (exp) < 0)
       || (offs (exp) > 31))
     {
-      as_bad ("'entry_num' must be absolute number in [0,31]");
+      as_bad (_("'entry_num' must be absolute number in [0,31]"));
       return;
     }
 
@@ -2682,14 +2650,13 @@ s_sysproc (n_ops, args)
 
   if (TC_S_IS_SYSPROC (symP))
     {
-      as_warn ("Redefining entrynum for sysproc %s", S_GET_NAME (symP));
+      as_warn (_("Redefining entrynum for sysproc %s"), S_GET_NAME (symP));
     }                          /* redefining */
 
   TC_S_SET_SYSPROC (symP, offs (exp)); /* encode entry number */
   TC_S_FORCE_TO_SYSPROC (symP);
 }
 
-
 /*****************************************************************************
    shift_ok:
        Determine if a "shlo" instruction can be used to implement a "ldconst".
@@ -2726,16 +2693,14 @@ shift_ok (n)
   return shift;
 }
 
-
 /* syntax: issue syntax error */
 
 static void
 syntax ()
 {
-  as_bad ("syntax error");
+  as_bad (_("syntax error"));
 }                              /* syntax() */
 
-
 /* targ_has_sfr:
 
    Return TRUE iff the target architecture supports the specified
@@ -2751,7 +2716,7 @@ targ_has_sfr (n)
     case ARCH_KA:
     case ARCH_KB:
     case ARCH_MC:
-    case ARCH_XL:
+    case ARCH_JX:
       return 0;
     case ARCH_HX:
       return ((0 <= n) && (n <= 4));
@@ -2761,7 +2726,6 @@ targ_has_sfr (n)
     }
 }
 
-
 /* targ_has_iclass:
 
    Return TRUE iff the target architecture supports the indicated
@@ -2785,15 +2749,15 @@ targ_has_iclass (ic)
       return ic & (I_BASE | I_KX | I_FP | I_DEC | I_MIL);
     case ARCH_CA:
       return ic & (I_BASE | I_CX | I_CX2 | I_CASIM);
+    case ARCH_JX:
+      return ic & (I_BASE | I_CX2 | I_JX);
     case ARCH_HX:
-      return ic & (I_BASE | I_CX2 | I_HX | I_HX2);
-    case ARCH_XL:
-      return ic & (I_BASE | I_CX2 | I_HX2); /* XL */
+      return ic & (I_BASE | I_CX2 | I_JX | I_HX);
     default:
       if ((iclasses_seen & (I_KX | I_FP | I_DEC | I_MIL))
          && (iclasses_seen & (I_CX | I_CX2)))
        {
-         as_warn ("architecture of opcode conflicts with that of earlier instruction(s)");
+         as_warn (_("architecture of opcode conflicts with that of earlier instruction(s)"));
          iclasses_seen &= ~ic;
        }
       return 1;
@@ -2814,18 +2778,17 @@ s_endian (ignore)
   if (strcasecmp (name, "little") == 0)
     ;
   else if (strcasecmp (name, "big") == 0)
-    as_bad ("big endian mode is not supported");
+    as_bad (_("big endian mode is not supported"));
   else
-    as_warn ("ignoring unrecognized .endian type `%s'", name);
+    as_warn (_("ignoring unrecognized .endian type `%s'"), name);
 
   *input_line_pointer = c;
 
   demand_empty_rest_of_line ();
 }
 
-/* We have no need to default values of symbols. */
+/* We have no need to default values of symbols.  */
 
-/* ARGSUSED */
 symbolS *
 md_undefined_symbol (name)
      char *name;
@@ -2835,7 +2798,7 @@ md_undefined_symbol (name)
 
 /* Exactly what point is a PC-relative offset relative TO?
    On the i960, they're relative to the address of the instruction,
-   which we have set up as the address of the fixup too. */
+   which we have set up as the address of the fixup too.  */
 long
 md_pcrel_from (fixP)
      fixS *fixP;
@@ -2843,41 +2806,42 @@ md_pcrel_from (fixP)
   return fixP->fx_where + fixP->fx_frag->fr_address;
 }
 
+#ifdef BFD_ASSEMBLER
+int
+md_apply_fix (fixP, valp)
+     fixS *fixP;
+     valueT *valp;
+#else
 void
 md_apply_fix (fixP, val)
      fixS *fixP;
      long val;
+#endif
 {
+#ifdef BFD_ASSEMBLER
+  long val = *valp;
+#endif
   char *place = fixP->fx_where + fixP->fx_frag->fr_literal;
 
   if (!fixP->fx_bit_fixP)
-    switch (fixP->fx_im_disp)
-      {
-      case 0:
-       /* For callx, we always want to write out zero, and emit a
-          symbolic relocation.  */
-       if (fixP->fx_bsr)
-         val = 0;
-
-       fixP->fx_addnumber = val;
-       md_number_to_imm (place, val, fixP->fx_size, fixP);
-       break;
-      case 1:
-       md_number_to_disp (place,
-                          (fixP->fx_pcrel
-                           ? val + fixP->fx_pcrel_adjust
-                           : val),
-                          fixP->fx_size);
-       break;
-      case 2:                  /* fix requested for .long .word etc */
-       md_number_to_chars (place, val, fixP->fx_size);
-       break;
-      default:
-       as_fatal ("Internal error in md_apply_fix() in file \"%s\"",
-                 __FILE__);
-      }
+    {
+#ifndef BFD_ASSEMBLER
+      /* For callx, we always want to write out zero, and emit a
+        symbolic relocation.  */
+      if (fixP->fx_bsr)
+       val = 0;
+
+      fixP->fx_addnumber = val;
+#endif
+
+      md_number_to_imm (place, val, fixP->fx_size, fixP);
+    }
   else
     md_number_to_field (place, val, fixP->fx_bit_fixP);
+
+#ifdef BFD_ASSEMBLER
+  return 0;
+#endif
 }
 
 #if defined(OBJ_AOUT) | defined(OBJ_BOUT)
@@ -2936,7 +2900,7 @@ tc_bout_fix_to_chars (where, fixP, segment_address_in_file)
       ri.r_index = S_GET_TYPE (symbolP);
     }
 
-  /* Output the relocation information in machine-dependent form. */
+  /* Output the relocation information in machine-dependent form.  */
   md_ri_to_chars (where, &ri);
 }
 
@@ -2977,8 +2941,14 @@ md_section_align (seg, addr)
      segT seg;
      valueT addr;              /* Address to be rounded up */
 {
-  return ((addr + (1 << section_alignment[(int) seg]) - 1) & (-1 << section_alignment[(int) seg]));
-}                              /* md_section_align() */
+  int align;
+#ifdef BFD_ASSEMBLER
+  align = bfd_get_section_alignment (stdoutput, seg);
+#else
+  align = section_alignment[(int) seg];
+#endif
+  return (addr + (1 << align) - 1) & (-1 << align);
+}
 
 extern int coff_flags;
 
@@ -3005,21 +2975,23 @@ tc_headers_hook (headers)
       coff_flags |= F_I960CA;
       break;
 
+    case ARCH_JX:
+      coff_flags |= F_I960JX;
+      break;
+
     case ARCH_HX:
       coff_flags |= F_I960HX;
       break;
 
-    case ARCH_XL:
-      coff_flags |= F_I960XL;
-      break; /* XL */
-
     default:
       if (iclasses_seen == I_BASE)
        coff_flags |= F_I960CORE;
       else if (iclasses_seen & I_CX)
        coff_flags |= F_I960CA;
-      else if (iclasses_seen & (I_HX | I_HX2))
+      else if (iclasses_seen & I_HX)
        coff_flags |= F_I960HX;
+      else if (iclasses_seen & I_JX)
+       coff_flags |= F_I960JX;
       else if (iclasses_seen & I_CX2)
        coff_flags |= F_I960CA;
       else if (iclasses_seen & I_MIL)
@@ -3045,6 +3017,8 @@ tc_headers_hook (headers)
 
 #endif /* OBJ_COFF */
 
+#ifndef BFD_ASSEMBLER
+
 /* Things going on here:
 
    For bout, We need to assure a couple of simplifying
@@ -3087,7 +3061,7 @@ tc_crawl_symbol_chain (headers)
 
       if (!S_IS_DEFINED (symbolP))
        {
-         as_bad ("leafproc symbol '%s' undefined", S_GET_NAME (symbolP));
+         as_bad (_("leafproc symbol '%s' undefined"), S_GET_NAME (symbolP));
        }                       /* undefined leaf */
 
       if (TC_S_IS_CALLNAME (symbolP))
@@ -3097,13 +3071,15 @@ tc_crawl_symbol_chain (headers)
            {
              S_SET_EXTERNAL (symbolP);
              S_SET_EXTERNAL (balP);
-             as_warn ("Warning: making leafproc entries %s and %s both global\n",
+             as_warn (_("Warning: making leafproc entries %s and %s both global\n"),
                       S_GET_NAME (symbolP), S_GET_NAME (balP));
            }                   /* externality mismatch */
        }                       /* if callname */
     }                          /* walk the symbol chain */
 }
 
+#endif /* ! BFD_ASSEMBLER */
+
 /* For aout or bout, the bal immediately follows the call.
 
    For coff, we cheat and store a pointer to the bal symbol in the
@@ -3127,7 +3103,7 @@ tc_set_bal_of_call (callP, balP)
 
 #ifdef OBJ_COFF
 
-  callP->sy_symbol.ost_auxent[1].x_bal.x_balntry = (int) balP;
+  callP->sy_tc = balP;
   S_SET_NUMBER_AUXILIARY (callP, 2);
 
 #else /* ! OBJ_COFF */
@@ -3143,13 +3119,13 @@ tc_set_bal_of_call (callP, balP)
     }                          /* if not in order */
 
 #else /* ! OBJ_ABOUT */
-  (as yet unwritten.);
+  as_fatal ("Only supported for a.out, b.out, or COFF");
 #endif /* ! OBJ_ABOUT */
 #endif /* ! OBJ_COFF */
 }
 
-char *
-_tc_get_bal_of_call (callP)
+symbolS *
+tc_get_bal_of_call (callP)
      symbolS *callP;
 {
   symbolS *retval;
@@ -3157,17 +3133,17 @@ _tc_get_bal_of_call (callP)
   know (TC_S_IS_CALLNAME (callP));
 
 #ifdef OBJ_COFF
-  retval = (symbolS *) (callP->sy_symbol.ost_auxent[1].x_bal.x_balntry);
+  retval = callP->sy_tc;
 #else
 #ifdef OBJ_ABOUT
   retval = symbol_next (callP);
 #else
-  (as yet unwritten.);
+  as_fatal ("Only supported for a.out, b.out, or COFF");
 #endif /* ! OBJ_ABOUT */
 #endif /* ! OBJ_COFF */
 
   know (TC_S_IS_BALNAME (retval));
-  return ((char *) retval);
+  return retval;
 }                              /* _tc_get_bal_of_call() */
 
 void
@@ -3184,7 +3160,10 @@ tc_coff_symbol_emit_hook (symbolP)
       S_SET_NUMBER_AUXILIARY (symbolP, 2);
 #endif
       symbolP->sy_symbol.ost_auxent[1].x_bal.x_balntry = S_GET_VALUE (balP);
-      S_SET_STORAGE_CLASS (symbolP, (!SF_GET_LOCAL (symbolP) ? C_LEAFEXT : C_LEAFSTAT));
+      if (S_GET_STORAGE_CLASS (symbolP) == C_EXT)
+       S_SET_STORAGE_CLASS (symbolP, C_LEAFEXT);
+      else
+       S_SET_STORAGE_CLASS (symbolP, C_LEAFSTAT);
       S_SET_DATA_TYPE (symbolP, S_GET_DATA_TYPE (symbolP) | (DT_FCN << N_BTSHFT));
       /* fix up the bal symbol */
       S_SET_STORAGE_CLASS (balP, C_LABEL);
@@ -3201,7 +3180,7 @@ i960_handle_align (fragp)
 
 #ifndef OBJ_BOUT
 
-  as_bad ("option --link-relax is only supported in b.out format");
+  as_bad (_("option --link-relax is only supported in b.out format"));
   linkrelax = 0;
   return;
 
@@ -3229,11 +3208,11 @@ i960_validate_fix (fixP, this_segment_type, add_symbolPP)
   if (fixP->fx_tcbit && TC_S_IS_CALLNAME (add_symbolP))
     {
       /* Relocation should be done via the associated 'bal'
-         entry point symbol. */
+         entry point symbol.  */
 
       if (!TC_S_IS_BALNAME (tc_get_bal_of_call (add_symbolP)))
        {
-         as_bad ("No 'bal' entry point for leafproc %s",
+         as_bad (_("No 'bal' entry point for leafproc %s"),
                  S_GET_NAME (add_symbolP));
          return 1;
        }
@@ -3244,7 +3223,7 @@ i960_validate_fix (fixP, this_segment_type, add_symbolPP)
   {
     if (fixP->fx_tcbit)
       {
-       as_bad ("callj to difference of two symbols");
+       as_bad (_("callj to difference of two symbols"));
        return 1;
       }
     reloc_callj (fixP);
@@ -3253,8 +3232,8 @@ i960_validate_fix (fixP, this_segment_type, add_symbolPP)
        /* This is a COBR instruction.  They have only a 13-bit
           displacement and are only to be used for local branches:
           flag as error, don't generate relocation.  */
-       as_bad ("can't use COBR format with external label");
-       fixP->fx_addsy = NULL;  /* No relocations please. */
+       as_bad (_("can't use COBR format with external label"));
+       fixP->fx_addsy = NULL;  /* No relocations please.  */
        return 1;
       }
   }
@@ -3263,4 +3242,68 @@ i960_validate_fix (fixP, this_segment_type, add_symbolPP)
   return 0;
 }
 
+#ifdef BFD_ASSEMBLER
+
+/* From cgen.c:  */
+
+static short
+tc_bfd_fix2rtype (fixP)
+     fixS *fixP;
+{
+#if 0
+  if (fixP->fx_bsr)
+    abort ();
+#endif
+
+  if (fixP->fx_pcrel == 0 && fixP->fx_size == 4)
+    return BFD_RELOC_32;
+
+  if (fixP->fx_pcrel != 0 && fixP->fx_size == 4)
+    return BFD_RELOC_24_PCREL;
+
+  abort ();
+  return 0;
+}
+
+/* Translate internal representation of relocation info to BFD target
+   format.
+
+   FIXME: To what extent can we get all relevant targets to use this?  */
+
+arelent *
+tc_gen_reloc (section, fixP)
+     asection *section;
+     fixS *fixP;
+{
+  arelent * reloc;
+
+  reloc = (arelent *) xmalloc (sizeof (arelent));
+
+  /* HACK: Is this right? */
+  fixP->fx_r_type = tc_bfd_fix2rtype (fixP);
+
+  reloc->howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
+  if (reloc->howto == (reloc_howto_type *) NULL)
+    {
+      as_bad_where (fixP->fx_file, fixP->fx_line,
+                   "internal error: can't export reloc type %d (`%s')",
+                   fixP->fx_r_type,
+                   bfd_get_reloc_code_name (fixP->fx_r_type));
+      return NULL;
+    }
+
+  assert (!fixP->fx_pcrel == !reloc->howto->pc_relative);
+
+  reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
+  *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
+  reloc->address = fixP->fx_frag->fr_address + fixP->fx_where;
+  reloc->addend = fixP->fx_addnumber;
+
+  return reloc;
+}
+
+/* end from cgen.c */
+
+#endif /* BFD_ASSEMBLER */
+
 /* end of tc-i960.c */
This page took 0.039899 seconds and 4 git commands to generate.