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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [opcodes/] [m10200-dis.c] - Diff between revs 834 and 842

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

Rev 834 Rev 842
/* Disassemble MN10200 instructions.
/* Disassemble MN10200 instructions.
   Copyright 1996, 1997, 1998, 2000, 2005, 2007 Free Software Foundation, Inc.
   Copyright 1996, 1997, 1998, 2000, 2005, 2007 Free Software Foundation, Inc.
 
 
   This file is part of the GNU opcodes library.
   This file is part of the GNU opcodes library.
 
 
   This library is free software; you can redistribute it and/or modify
   This library 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, or (at your option)
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
   any later version.
 
 
   It is distributed in the hope that it will be useful, but WITHOUT
   It is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.
   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.  */
 
 
#include <stdio.h>
#include <stdio.h>
 
 
#include "sysdep.h"
#include "sysdep.h"
#include "opcode/mn10200.h" 
#include "opcode/mn10200.h" 
#include "dis-asm.h"
#include "dis-asm.h"
#include "opintl.h"
#include "opintl.h"
 
 
static void
static void
disassemble (bfd_vma memaddr,
disassemble (bfd_vma memaddr,
             struct disassemble_info *info,
             struct disassemble_info *info,
             unsigned long insn,
             unsigned long insn,
             unsigned long extension,
             unsigned long extension,
             unsigned int size)
             unsigned int size)
{
{
  struct mn10200_opcode *op = (struct mn10200_opcode *)mn10200_opcodes;
  struct mn10200_opcode *op = (struct mn10200_opcode *)mn10200_opcodes;
  const struct mn10200_operand *operand;
  const struct mn10200_operand *operand;
  int match = 0;
  int match = 0;
 
 
  /* Find the opcode.  */
  /* Find the opcode.  */
  while (op->name)
  while (op->name)
    {
    {
      int mysize, extra_shift;
      int mysize, extra_shift;
 
 
      if (op->format == FMT_1)
      if (op->format == FMT_1)
        mysize = 1;
        mysize = 1;
      else if (op->format == FMT_2
      else if (op->format == FMT_2
               || op->format == FMT_4)
               || op->format == FMT_4)
        mysize = 2;
        mysize = 2;
      else if (op->format == FMT_3
      else if (op->format == FMT_3
               || op->format == FMT_5)
               || op->format == FMT_5)
        mysize = 3;
        mysize = 3;
      else if (op->format == FMT_6)
      else if (op->format == FMT_6)
        mysize = 4;
        mysize = 4;
      else if (op->format == FMT_7)
      else if (op->format == FMT_7)
        mysize = 5;
        mysize = 5;
      else
      else
        abort ();
        abort ();
 
 
      if (op->format == FMT_2 || op->format == FMT_5)
      if (op->format == FMT_2 || op->format == FMT_5)
        extra_shift = 8;
        extra_shift = 8;
      else if (op->format == FMT_3
      else if (op->format == FMT_3
               || op->format == FMT_6
               || op->format == FMT_6
               || op->format == FMT_7)
               || op->format == FMT_7)
        extra_shift = 16;
        extra_shift = 16;
      else
      else
        extra_shift = 0;
        extra_shift = 0;
 
 
      if ((op->mask & insn) == op->opcode
      if ((op->mask & insn) == op->opcode
          && size == (unsigned int) mysize)
          && size == (unsigned int) mysize)
        {
        {
          const unsigned char *opindex_ptr;
          const unsigned char *opindex_ptr;
          unsigned int nocomma;
          unsigned int nocomma;
          int paren = 0;
          int paren = 0;
 
 
          match = 1;
          match = 1;
          (*info->fprintf_func) (info->stream, "%s\t", op->name);
          (*info->fprintf_func) (info->stream, "%s\t", op->name);
 
 
          /* Now print the operands.  */
          /* Now print the operands.  */
          for (opindex_ptr = op->operands, nocomma = 1;
          for (opindex_ptr = op->operands, nocomma = 1;
               *opindex_ptr != 0;
               *opindex_ptr != 0;
               opindex_ptr++)
               opindex_ptr++)
            {
            {
              unsigned long value;
              unsigned long value;
 
 
              operand = &mn10200_operands[*opindex_ptr];
              operand = &mn10200_operands[*opindex_ptr];
 
 
              if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
              if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
                {
                {
                  value = (insn & 0xffff) << 8;
                  value = (insn & 0xffff) << 8;
                  value |= extension;
                  value |= extension;
                }
                }
              else
              else
                {
                {
                  value = ((insn >> (operand->shift))
                  value = ((insn >> (operand->shift))
                           & ((1L << operand->bits) - 1L));
                           & ((1L << operand->bits) - 1L));
                }
                }
 
 
              if ((operand->flags & MN10200_OPERAND_SIGNED) != 0)
              if ((operand->flags & MN10200_OPERAND_SIGNED) != 0)
                value = ((long)(value << (32 - operand->bits))
                value = ((long)(value << (32 - operand->bits))
                          >> (32 - operand->bits));
                          >> (32 - operand->bits));
 
 
              if (!nocomma
              if (!nocomma
                  && (!paren
                  && (!paren
                      || ((operand->flags & MN10200_OPERAND_PAREN) == 0)))
                      || ((operand->flags & MN10200_OPERAND_PAREN) == 0)))
                (*info->fprintf_func) (info->stream, ",");
                (*info->fprintf_func) (info->stream, ",");
 
 
              nocomma = 0;
              nocomma = 0;
 
 
              if ((operand->flags & MN10200_OPERAND_DREG) != 0)
              if ((operand->flags & MN10200_OPERAND_DREG) != 0)
                {
                {
                  value = ((insn >> (operand->shift + extra_shift))
                  value = ((insn >> (operand->shift + extra_shift))
                           & ((1 << operand->bits) - 1));
                           & ((1 << operand->bits) - 1));
                  (*info->fprintf_func) (info->stream, "d%ld", value);
                  (*info->fprintf_func) (info->stream, "d%ld", value);
                }
                }
 
 
              else if ((operand->flags & MN10200_OPERAND_AREG) != 0)
              else if ((operand->flags & MN10200_OPERAND_AREG) != 0)
                {
                {
                  value = ((insn >> (operand->shift + extra_shift))
                  value = ((insn >> (operand->shift + extra_shift))
                           & ((1 << operand->bits) - 1));
                           & ((1 << operand->bits) - 1));
                  (*info->fprintf_func) (info->stream, "a%ld", value);
                  (*info->fprintf_func) (info->stream, "a%ld", value);
                }
                }
 
 
              else if ((operand->flags & MN10200_OPERAND_PSW) != 0)
              else if ((operand->flags & MN10200_OPERAND_PSW) != 0)
                (*info->fprintf_func) (info->stream, "psw");
                (*info->fprintf_func) (info->stream, "psw");
 
 
              else if ((operand->flags & MN10200_OPERAND_MDR) != 0)
              else if ((operand->flags & MN10200_OPERAND_MDR) != 0)
                (*info->fprintf_func) (info->stream, "mdr");
                (*info->fprintf_func) (info->stream, "mdr");
 
 
              else if ((operand->flags & MN10200_OPERAND_PAREN) != 0)
              else if ((operand->flags & MN10200_OPERAND_PAREN) != 0)
                {
                {
                  if (paren)
                  if (paren)
                    (*info->fprintf_func) (info->stream, ")");
                    (*info->fprintf_func) (info->stream, ")");
                  else
                  else
                    {
                    {
                      (*info->fprintf_func) (info->stream, "(");
                      (*info->fprintf_func) (info->stream, "(");
                      nocomma = 1;
                      nocomma = 1;
                    }
                    }
                  paren = !paren;
                  paren = !paren;
                }
                }
 
 
              else if ((operand->flags & MN10200_OPERAND_PCREL) != 0)
              else if ((operand->flags & MN10200_OPERAND_PCREL) != 0)
                (*info->print_address_func)
                (*info->print_address_func)
                  ((value + memaddr + mysize) & 0xffffff, info);
                  ((value + memaddr + mysize) & 0xffffff, info);
 
 
              else if ((operand->flags & MN10200_OPERAND_MEMADDR) != 0)
              else if ((operand->flags & MN10200_OPERAND_MEMADDR) != 0)
                (*info->print_address_func) (value, info);
                (*info->print_address_func) (value, info);
 
 
              else
              else
                (*info->fprintf_func) (info->stream, "%ld", value);
                (*info->fprintf_func) (info->stream, "%ld", value);
            }
            }
          /* All done. */
          /* All done. */
          break;
          break;
        }
        }
      op++;
      op++;
    }
    }
 
 
  if (!match)
  if (!match)
    (*info->fprintf_func) (info->stream, _("unknown\t0x%04lx"), insn);
    (*info->fprintf_func) (info->stream, _("unknown\t0x%04lx"), insn);
}
}
 
 
int
int
print_insn_mn10200 (bfd_vma memaddr, struct disassemble_info *info)
print_insn_mn10200 (bfd_vma memaddr, struct disassemble_info *info)
{
{
  int status;
  int status;
  bfd_byte buffer[4];
  bfd_byte buffer[4];
  unsigned long insn;
  unsigned long insn;
  unsigned long extension = 0;
  unsigned long extension = 0;
  unsigned int consume;
  unsigned int consume;
 
 
  /* First figure out how big the opcode is.  */
  /* First figure out how big the opcode is.  */
  status = (*info->read_memory_func) (memaddr, buffer, 1, info);
  status = (*info->read_memory_func) (memaddr, buffer, 1, info);
  if (status != 0)
  if (status != 0)
    {
    {
      (*info->memory_error_func) (status, memaddr, info);
      (*info->memory_error_func) (status, memaddr, info);
      return -1;
      return -1;
    }
    }
 
 
  insn = *(unsigned char *) buffer;
  insn = *(unsigned char *) buffer;
 
 
  /* These are one byte insns.  */
  /* These are one byte insns.  */
  if ((insn & 0xf0) == 0x00
  if ((insn & 0xf0) == 0x00
      || (insn & 0xf0) == 0x10
      || (insn & 0xf0) == 0x10
      || (insn & 0xf0) == 0x20
      || (insn & 0xf0) == 0x20
      || (insn & 0xf0) == 0x30
      || (insn & 0xf0) == 0x30
      || ((insn & 0xf0) == 0x80
      || ((insn & 0xf0) == 0x80
          && (insn & 0x0c) >> 2 != (insn & 0x03))
          && (insn & 0x0c) >> 2 != (insn & 0x03))
      || (insn & 0xf0) == 0x90
      || (insn & 0xf0) == 0x90
      || (insn & 0xf0) == 0xa0
      || (insn & 0xf0) == 0xa0
      || (insn & 0xf0) == 0xb0
      || (insn & 0xf0) == 0xb0
      || (insn & 0xff) == 0xeb
      || (insn & 0xff) == 0xeb
      || (insn & 0xff) == 0xf6
      || (insn & 0xff) == 0xf6
      || (insn & 0xff) == 0xfe
      || (insn & 0xff) == 0xfe
      || (insn & 0xff) == 0xff)
      || (insn & 0xff) == 0xff)
    {
    {
      extension = 0;
      extension = 0;
      consume = 1;
      consume = 1;
    }
    }
 
 
  /* These are two byte insns.  */
  /* These are two byte insns.  */
  else if ((insn & 0xf0) == 0x40
  else if ((insn & 0xf0) == 0x40
           || (insn & 0xf0) == 0x50
           || (insn & 0xf0) == 0x50
           || (insn & 0xf0) == 0x60
           || (insn & 0xf0) == 0x60
           || (insn & 0xf0) == 0x70
           || (insn & 0xf0) == 0x70
           || (insn & 0xf0) == 0x80
           || (insn & 0xf0) == 0x80
           || (insn & 0xfc) == 0xd0
           || (insn & 0xfc) == 0xd0
           || (insn & 0xfc) == 0xd4
           || (insn & 0xfc) == 0xd4
           || (insn & 0xfc) == 0xd8
           || (insn & 0xfc) == 0xd8
           || (insn & 0xfc) == 0xe0
           || (insn & 0xfc) == 0xe0
           || (insn & 0xfc) == 0xe4
           || (insn & 0xfc) == 0xe4
           || (insn & 0xff) == 0xe8
           || (insn & 0xff) == 0xe8
           || (insn & 0xff) == 0xe9
           || (insn & 0xff) == 0xe9
           || (insn & 0xff) == 0xea
           || (insn & 0xff) == 0xea
           || (insn & 0xff) == 0xf0
           || (insn & 0xff) == 0xf0
           || (insn & 0xff) == 0xf1
           || (insn & 0xff) == 0xf1
           || (insn & 0xff) == 0xf2
           || (insn & 0xff) == 0xf2
           || (insn & 0xff) == 0xf3)
           || (insn & 0xff) == 0xf3)
    {
    {
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
           return -1;
           return -1;
        }
        }
      insn = bfd_getb16 (buffer);
      insn = bfd_getb16 (buffer);
      consume = 2;
      consume = 2;
    }
    }
 
 
  /* These are three byte insns with a 16bit operand in little
  /* These are three byte insns with a 16bit operand in little
     endian form.  */
     endian form.  */
  else if ((insn & 0xf0) == 0xc0
  else if ((insn & 0xf0) == 0xc0
           || (insn & 0xfc) == 0xdc
           || (insn & 0xfc) == 0xdc
           || (insn & 0xfc) == 0xec
           || (insn & 0xfc) == 0xec
           || (insn & 0xff) == 0xf8
           || (insn & 0xff) == 0xf8
           || (insn & 0xff) == 0xf9
           || (insn & 0xff) == 0xf9
           || (insn & 0xff) == 0xfa
           || (insn & 0xff) == 0xfa
           || (insn & 0xff) == 0xfb
           || (insn & 0xff) == 0xfb
           || (insn & 0xff) == 0xfc
           || (insn & 0xff) == 0xfc
           || (insn & 0xff) == 0xfd)
           || (insn & 0xff) == 0xfd)
    {
    {
      status = (*info->read_memory_func) (memaddr + 1, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr + 1, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn <<= 16;
      insn <<= 16;
      insn |= bfd_getl16 (buffer);
      insn |= bfd_getl16 (buffer);
      extension = 0;
      extension = 0;
      consume = 3;
      consume = 3;
    }
    }
  /* These are three byte insns too, but we don't have to mess with
  /* These are three byte insns too, but we don't have to mess with
     endianness stuff.  */
     endianness stuff.  */
  else if ((insn & 0xff) == 0xf5)
  else if ((insn & 0xff) == 0xf5)
    {
    {
      status = (*info->read_memory_func) (memaddr + 1, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr + 1, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn <<= 16;
      insn <<= 16;
      insn |= bfd_getb16 (buffer);
      insn |= bfd_getb16 (buffer);
      extension = 0;
      extension = 0;
      consume = 3;
      consume = 3;
    }
    }
 
 
  /* These are four byte insns.  */
  /* These are four byte insns.  */
  else if ((insn & 0xff) == 0xf7)
  else if ((insn & 0xff) == 0xf7)
    {
    {
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn = bfd_getb16 (buffer);
      insn = bfd_getb16 (buffer);
      insn <<= 16;
      insn <<= 16;
      status = (*info->read_memory_func) (memaddr + 2, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr + 2, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn |= bfd_getl16 (buffer);
      insn |= bfd_getl16 (buffer);
      extension = 0;
      extension = 0;
      consume = 4;
      consume = 4;
    }
    }
 
 
  /* These are five byte insns.  */
  /* These are five byte insns.  */
  else if ((insn & 0xff) == 0xf4)
  else if ((insn & 0xff) == 0xf4)
    {
    {
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      status = (*info->read_memory_func) (memaddr, buffer, 2, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn = bfd_getb16 (buffer);
      insn = bfd_getb16 (buffer);
      insn <<= 16;
      insn <<= 16;
 
 
      status = (*info->read_memory_func) (memaddr + 4, buffer, 1, info);
      status = (*info->read_memory_func) (memaddr + 4, buffer, 1, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn |= (*(unsigned char *)buffer << 8) & 0xff00;
      insn |= (*(unsigned char *)buffer << 8) & 0xff00;
 
 
      status = (*info->read_memory_func) (memaddr + 3, buffer, 1, info);
      status = (*info->read_memory_func) (memaddr + 3, buffer, 1, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      insn |= (*(unsigned char *)buffer) & 0xff;
      insn |= (*(unsigned char *)buffer) & 0xff;
 
 
      status = (*info->read_memory_func) (memaddr + 2, buffer, 1, info);
      status = (*info->read_memory_func) (memaddr + 2, buffer, 1, info);
      if (status != 0)
      if (status != 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      extension = (*(unsigned char *)buffer) & 0xff;
      extension = (*(unsigned char *)buffer) & 0xff;
      consume = 5;
      consume = 5;
    }
    }
  else
  else
    {
    {
      (*info->fprintf_func) (info->stream, _("unknown\t0x%02lx"), insn);
      (*info->fprintf_func) (info->stream, _("unknown\t0x%02lx"), insn);
      return 1;
      return 1;
    }
    }
 
 
  disassemble (memaddr, info, insn, extension, consume);
  disassemble (memaddr, info, insn, extension, consume);
 
 
  return consume;
  return consume;
}
}
 
 

powered by: WebSVN 2.1.0

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