OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [binutils-2.20.1/] [cpu/] [lm32.opc] - Diff between revs 816 and 818

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 818
/* Lattice Mico32 opcode support.  -*- C -*-
/* Lattice Mico32 opcode support.  -*- C -*-
   Copyright 2008, 2009  Free Software Foundation, Inc.
   Copyright 2008, 2009  Free Software Foundation, Inc.
   Contributed by Jon Beniston 
   Contributed by Jon Beniston 
   This file is part of the GNU Binutils.
   This file is part of the GNU Binutils.
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */
   MA 02110-1301, USA.  */
/* -- opc.h */
/* -- opc.h */
/* Allows reason codes to be output when assembler errors occur.  */
/* Allows reason codes to be output when assembler errors occur.  */
#define CGEN_VERBOSE_ASSEMBLER_ERRORS
#define CGEN_VERBOSE_ASSEMBLER_ERRORS
#define CGEN_DIS_HASH_SIZE 64
#define CGEN_DIS_HASH_SIZE 64
#define CGEN_DIS_HASH(buf,value) ((value >> 26) & 0x3f)
#define CGEN_DIS_HASH(buf,value) ((value >> 26) & 0x3f)
/* -- asm.c */
/* -- asm.c */
/* Handle signed/unsigned literal.  */
/* Handle signed/unsigned literal.  */
static const char *
static const char *
parse_imm (CGEN_CPU_DESC cd,
parse_imm (CGEN_CPU_DESC cd,
           const char **strp,
           const char **strp,
           int opindex,
           int opindex,
           unsigned long *valuep)
           unsigned long *valuep)
{
{
  const char *errmsg;
  const char *errmsg;
  signed long value;
  signed long value;
  errmsg = cgen_parse_signed_integer (cd, strp, opindex, & value);
  errmsg = cgen_parse_signed_integer (cd, strp, opindex, & value);
  if (errmsg == NULL)
  if (errmsg == NULL)
    {
    {
      unsigned long x = value & 0xFFFF0000;
      unsigned long x = value & 0xFFFF0000;
      if (x != 0 && x != 0xFFFF0000)
      if (x != 0 && x != 0xFFFF0000)
        errmsg = _("immediate value out of range");
        errmsg = _("immediate value out of range");
      else
      else
        *valuep = (value & 0xFFFF);
        *valuep = (value & 0xFFFF);
    }
    }
  return errmsg;
  return errmsg;
}
}
/* Handle hi() */
/* Handle hi() */
static const char *
static const char *
parse_hi16 (CGEN_CPU_DESC cd,
parse_hi16 (CGEN_CPU_DESC cd,
            const char **strp,
            const char **strp,
            int opindex,
            int opindex,
            unsigned long *valuep)
            unsigned long *valuep)
{
{
  if (strncasecmp (*strp, "hi(", 3) == 0)
  if (strncasecmp (*strp, "hi(", 3) == 0)
    {
    {
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      const char *errmsg;
      const char *errmsg;
      *strp += 3;
      *strp += 3;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_HI16,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_HI16,
                                   &result_type, &value);
                                   &result_type, &value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value = (value >> 16) & 0xffff;
        value = (value >> 16) & 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return parse_imm (cd, strp, opindex, valuep);
  return parse_imm (cd, strp, opindex, valuep);
}
}
/* Handle lo() */
/* Handle lo() */
static const char *
static const char *
parse_lo16 (CGEN_CPU_DESC cd,
parse_lo16 (CGEN_CPU_DESC cd,
            const char **strp,
            const char **strp,
            int opindex,
            int opindex,
            unsigned long *valuep)
            unsigned long *valuep)
{
{
  if (strncasecmp (*strp, "lo(", 3) == 0)
  if (strncasecmp (*strp, "lo(", 3) == 0)
    {
    {
      const char *errmsg;
      const char *errmsg;
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      *strp += 3;
      *strp += 3;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LO16,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LO16,
                                   &result_type, &value);
                                   &result_type, &value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value &= 0xffff;
        value &= 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return parse_imm (cd, strp, opindex, valuep);
  return parse_imm (cd, strp, opindex, valuep);
}
}
/* Handle gp() */
/* Handle gp() */
static const char *
static const char *
parse_gp16 (CGEN_CPU_DESC cd,
parse_gp16 (CGEN_CPU_DESC cd,
            const char **strp,
            const char **strp,
            int opindex,
            int opindex,
            long *valuep)
            long *valuep)
{
{
  if (strncasecmp (*strp, "gp(", 3) == 0)
  if (strncasecmp (*strp, "gp(", 3) == 0)
    {
    {
      const char *errmsg;
      const char *errmsg;
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      *strp += 3;
      *strp += 3;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_GPREL16,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_GPREL16,
                                   & result_type, & value);
                                   & result_type, & value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value &= 0xffff;
        value &= 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return _("expecting gp relative address: gp(symbol)");
  return _("expecting gp relative address: gp(symbol)");
}
}
/* Handle got() */
/* Handle got() */
static const char *
static const char *
parse_got16 (CGEN_CPU_DESC cd,
parse_got16 (CGEN_CPU_DESC cd,
             const char **strp,
             const char **strp,
             int opindex,
             int opindex,
             long *valuep)
             long *valuep)
{
{
  if (strncasecmp (*strp, "got(", 4) == 0)
  if (strncasecmp (*strp, "got(", 4) == 0)
    {
    {
      const char *errmsg;
      const char *errmsg;
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      *strp += 4;
      *strp += 4;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_16_GOT,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_16_GOT,
                                   & result_type, & value);
                                   & result_type, & value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value &= 0xffff;
        value &= 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return _("expecting got relative address: got(symbol)");
  return _("expecting got relative address: got(symbol)");
}
}
/* Handle gotoffhi16() */
/* Handle gotoffhi16() */
static const char *
static const char *
parse_gotoff_hi16 (CGEN_CPU_DESC cd,
parse_gotoff_hi16 (CGEN_CPU_DESC cd,
                   const char **strp,
                   const char **strp,
                   int opindex,
                   int opindex,
                   long *valuep)
                   long *valuep)
{
{
  if (strncasecmp (*strp, "gotoffhi16(", 11) == 0)
  if (strncasecmp (*strp, "gotoffhi16(", 11) == 0)
    {
    {
      const char *errmsg;
      const char *errmsg;
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      *strp += 11;
      *strp += 11;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_GOTOFF_HI16,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_GOTOFF_HI16,
                                   & result_type, & value);
                                   & result_type, & value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value &= 0xffff;
        value &= 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return _("expecting got relative address: gotoffhi16(symbol)");
  return _("expecting got relative address: gotoffhi16(symbol)");
}
}
/* Handle gotofflo16() */
/* Handle gotofflo16() */
static const char *
static const char *
parse_gotoff_lo16 (CGEN_CPU_DESC cd,
parse_gotoff_lo16 (CGEN_CPU_DESC cd,
                   const char **strp,
                   const char **strp,
                   int opindex,
                   int opindex,
                   long *valuep)
                   long *valuep)
{
{
  if (strncasecmp (*strp, "gotofflo16(", 11) == 0)
  if (strncasecmp (*strp, "gotofflo16(", 11) == 0)
    {
    {
      const char *errmsg;
      const char *errmsg;
      enum cgen_parse_operand_result result_type;
      enum cgen_parse_operand_result result_type;
      bfd_vma value;
      bfd_vma value;
      *strp += 11;
      *strp += 11;
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_GOTOFF_LO16,
      errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_LM32_GOTOFF_LO16,
                                   &result_type, &value);
                                   &result_type, &value);
      if (**strp != ')')
      if (**strp != ')')
        return _("missing `)'");
        return _("missing `)'");
      ++*strp;
      ++*strp;
      if (errmsg == NULL
      if (errmsg == NULL
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
          && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
        value &= 0xffff;
        value &= 0xffff;
      *valuep = value;
      *valuep = value;
      return errmsg;
      return errmsg;
    }
    }
  return _("expecting got relative address: gotofflo16(symbol)");
  return _("expecting got relative address: gotofflo16(symbol)");
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.