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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [opcodes/] [i860-dis.c] - Diff between revs 827 and 840

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

Rev 827 Rev 840
/* Disassembler for the i860.
/* Disassembler for the i860.
   Copyright 2000, 2003, 2005, 2007 Free Software Foundation, Inc.
   Copyright 2000, 2003, 2005, 2007 Free Software Foundation, Inc.
 
 
   Contributed by Jason Eckhardt <jle@cygnus.com>.
   Contributed by Jason Eckhardt <jle@cygnus.com>.
 
 
   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 "dis-asm.h"
#include "dis-asm.h"
#include "opcode/i860.h"
#include "opcode/i860.h"
 
 
/* Later we should probably choose the prefix based on which OS flavor.  */
/* Later we should probably choose the prefix based on which OS flavor.  */
#define I860_REG_PREFIX "%"
#define I860_REG_PREFIX "%"
 
 
/* Integer register names (encoded as 0..31 in the instruction).  */
/* Integer register names (encoded as 0..31 in the instruction).  */
static const char *const grnames[] =
static const char *const grnames[] =
 {"r0",  "r1",  "sp",  "fp",  "r4",  "r5",  "r6",  "r7",
 {"r0",  "r1",  "sp",  "fp",  "r4",  "r5",  "r6",  "r7",
  "r8",  "r9",  "r10", "r11", "r12", "r13", "r14", "r15",
  "r8",  "r9",  "r10", "r11", "r12", "r13", "r14", "r15",
  "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
  "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
  "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"};
  "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"};
 
 
/* FP register names (encoded as 0..31 in the instruction).  */
/* FP register names (encoded as 0..31 in the instruction).  */
static const char *const frnames[] =
static const char *const frnames[] =
 {"f0",  "f1",  "f2",  "f3",  "f4",  "f5",  "f6",  "f7",
 {"f0",  "f1",  "f2",  "f3",  "f4",  "f5",  "f6",  "f7",
  "f8",  "f9",  "f10", "f11", "f12", "f13", "f14", "f15",
  "f8",  "f9",  "f10", "f11", "f12", "f13", "f14", "f15",
  "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
  "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
  "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31"};
  "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31"};
 
 
/* Control/status register names (encoded as 0..11 in the instruction).
/* Control/status register names (encoded as 0..11 in the instruction).
   Registers bear, ccr, p0, p1, p2 and p3 are XP only.  */
   Registers bear, ccr, p0, p1, p2 and p3 are XP only.  */
static const char *const crnames[] =
static const char *const crnames[] =
 {"fir", "psr", "dirbase", "db", "fsr", "epsr", "bear", "ccr",
 {"fir", "psr", "dirbase", "db", "fsr", "epsr", "bear", "ccr",
  "p0", "p1", "p2", "p3", "--", "--", "--", "--" };
  "p0", "p1", "p2", "p3", "--", "--", "--", "--" };
 
 
 
 
 
 
/* True if opcode is xor, xorh, and, andh, or, orh, andnot, andnoth.  */
/* True if opcode is xor, xorh, and, andh, or, orh, andnot, andnoth.  */
#define BITWISE_OP(op)  ((op) == 0x30 || (op) == 0x31           \
#define BITWISE_OP(op)  ((op) == 0x30 || (op) == 0x31           \
                         || (op) == 0x34 || (op) == 0x35        \
                         || (op) == 0x34 || (op) == 0x35        \
                         || (op) == 0x38 || (op) == 0x39        \
                         || (op) == 0x38 || (op) == 0x39        \
                         || (op) == 0x3c || (op) == 0x3d        \
                         || (op) == 0x3c || (op) == 0x3d        \
                         || (op) == 0x33 || (op) == 0x37        \
                         || (op) == 0x33 || (op) == 0x37        \
                         || (op) == 0x3b || (op) == 0x3f)
                         || (op) == 0x3b || (op) == 0x3f)
 
 
 
 
/* Sign extend N-bit number.  */
/* Sign extend N-bit number.  */
static int
static int
sign_ext (unsigned int x, int n)
sign_ext (unsigned int x, int n)
{
{
  int t;
  int t;
  t = x >> (n - 1);
  t = x >> (n - 1);
  t = ((-t) << n) | x;
  t = ((-t) << n) | x;
  return t;
  return t;
}
}
 
 
 
 
/* Print a PC-relative branch offset.  VAL is the sign extended value
/* Print a PC-relative branch offset.  VAL is the sign extended value
   from the branch instruction.  */
   from the branch instruction.  */
static void
static void
print_br_address (disassemble_info *info, bfd_vma memaddr, long val)
print_br_address (disassemble_info *info, bfd_vma memaddr, long val)
{
{
 
 
  long adj = (long)memaddr + 4 + (val << 2);
  long adj = (long)memaddr + 4 + (val << 2);
 
 
  (*info->fprintf_func) (info->stream, "0x%08lx", adj);
  (*info->fprintf_func) (info->stream, "0x%08lx", adj);
 
 
  /* Attempt to obtain a symbol for the target address.  */
  /* Attempt to obtain a symbol for the target address.  */
 
 
  if (info->print_address_func && adj != 0)
  if (info->print_address_func && adj != 0)
    {
    {
      (*info->fprintf_func) (info->stream, "\t// ");
      (*info->fprintf_func) (info->stream, "\t// ");
      (*info->print_address_func) (adj, info);
      (*info->print_address_func) (adj, info);
    }
    }
}
}
 
 
 
 
/* Print one instruction.  */
/* Print one instruction.  */
int
int
print_insn_i860 (bfd_vma memaddr, disassemble_info *info)
print_insn_i860 (bfd_vma memaddr, disassemble_info *info)
{
{
  bfd_byte buff[4];
  bfd_byte buff[4];
  unsigned int insn, i;
  unsigned int insn, i;
  int status;
  int status;
  const struct i860_opcode *opcode = 0;
  const struct i860_opcode *opcode = 0;
 
 
  status = (*info->read_memory_func) (memaddr, buff, sizeof (buff), info);
  status = (*info->read_memory_func) (memaddr, buff, sizeof (buff), 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;
    }
    }
 
 
  /* Note that i860 instructions are always accessed as little endian
  /* Note that i860 instructions are always accessed as little endian
     data, regardless of the endian mode of the i860.  */
     data, regardless of the endian mode of the i860.  */
  insn = bfd_getl32 (buff);
  insn = bfd_getl32 (buff);
 
 
  status = 0;
  status = 0;
  i = 0;
  i = 0;
  while (i860_opcodes[i].name != NULL)
  while (i860_opcodes[i].name != NULL)
    {
    {
      opcode = &i860_opcodes[i];
      opcode = &i860_opcodes[i];
      if ((insn & opcode->match) == opcode->match
      if ((insn & opcode->match) == opcode->match
          && (insn & opcode->lose) == 0)
          && (insn & opcode->lose) == 0)
        {
        {
          status = 1;
          status = 1;
          break;
          break;
        }
        }
      ++i;
      ++i;
    }
    }
 
 
  if (status == 0)
  if (status == 0)
    {
    {
      /* Instruction not in opcode table.  */
      /* Instruction not in opcode table.  */
      (*info->fprintf_func) (info->stream, ".long %#08x", insn);
      (*info->fprintf_func) (info->stream, ".long %#08x", insn);
    }
    }
  else
  else
    {
    {
      const char *s;
      const char *s;
      int val;
      int val;
 
 
      /* If this a flop (or a shrd) and its dual bit is set,
      /* If this a flop (or a shrd) and its dual bit is set,
         prefix with 'd.'.  */
         prefix with 'd.'.  */
      if (((insn & 0xfc000000) == 0x48000000
      if (((insn & 0xfc000000) == 0x48000000
           || (insn & 0xfc000000) == 0xb0000000)
           || (insn & 0xfc000000) == 0xb0000000)
          && (insn & 0x200))
          && (insn & 0x200))
        (*info->fprintf_func) (info->stream, "d.%s\t", opcode->name);
        (*info->fprintf_func) (info->stream, "d.%s\t", opcode->name);
      else
      else
        (*info->fprintf_func) (info->stream, "%s\t", opcode->name);
        (*info->fprintf_func) (info->stream, "%s\t", opcode->name);
 
 
      for (s = opcode->args; *s; s++)
      for (s = opcode->args; *s; s++)
        {
        {
          switch (*s)
          switch (*s)
            {
            {
            /* Integer register (src1).  */
            /* Integer register (src1).  */
            case '1':
            case '1':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     grnames[(insn >> 11) & 0x1f]);
                                     grnames[(insn >> 11) & 0x1f]);
              break;
              break;
 
 
            /* Integer register (src2).  */
            /* Integer register (src2).  */
            case '2':
            case '2':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     grnames[(insn >> 21) & 0x1f]);
                                     grnames[(insn >> 21) & 0x1f]);
              break;
              break;
 
 
            /* Integer destination register.  */
            /* Integer destination register.  */
            case 'd':
            case 'd':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     grnames[(insn >> 16) & 0x1f]);
                                     grnames[(insn >> 16) & 0x1f]);
              break;
              break;
 
 
            /* Floating-point register (src1).  */
            /* Floating-point register (src1).  */
            case 'e':
            case 'e':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     frnames[(insn >> 11) & 0x1f]);
                                     frnames[(insn >> 11) & 0x1f]);
              break;
              break;
 
 
            /* Floating-point register (src2).  */
            /* Floating-point register (src2).  */
            case 'f':
            case 'f':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     frnames[(insn >> 21) & 0x1f]);
                                     frnames[(insn >> 21) & 0x1f]);
              break;
              break;
 
 
            /* Floating-point destination register.  */
            /* Floating-point destination register.  */
            case 'g':
            case 'g':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     frnames[(insn >> 16) & 0x1f]);
                                     frnames[(insn >> 16) & 0x1f]);
              break;
              break;
 
 
            /* Control register.  */
            /* Control register.  */
            case 'c':
            case 'c':
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
              (*info->fprintf_func) (info->stream, "%s%s", I860_REG_PREFIX,
                                     crnames[(insn >> 21) & 0xf]);
                                     crnames[(insn >> 21) & 0xf]);
              break;
              break;
 
 
            /* 16-bit immediate (sign extend, except for bitwise ops).  */
            /* 16-bit immediate (sign extend, except for bitwise ops).  */
            case 'i':
            case 'i':
              if (BITWISE_OP ((insn & 0xfc000000) >> 26))
              if (BITWISE_OP ((insn & 0xfc000000) >> 26))
                (*info->fprintf_func) (info->stream, "0x%04x",
                (*info->fprintf_func) (info->stream, "0x%04x",
                                       (unsigned int) (insn & 0xffff));
                                       (unsigned int) (insn & 0xffff));
              else
              else
                (*info->fprintf_func) (info->stream, "%d",
                (*info->fprintf_func) (info->stream, "%d",
                                       sign_ext ((insn & 0xffff), 16));
                                       sign_ext ((insn & 0xffff), 16));
              break;
              break;
 
 
            /* 16-bit immediate, aligned (2^0, ld.b).  */
            /* 16-bit immediate, aligned (2^0, ld.b).  */
            case 'I':
            case 'I':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext ((insn & 0xffff), 16));
                                     sign_ext ((insn & 0xffff), 16));
              break;
              break;
 
 
            /* 16-bit immediate, aligned (2^1, ld.s).  */
            /* 16-bit immediate, aligned (2^1, ld.s).  */
            case 'J':
            case 'J':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext ((insn & 0xfffe), 16));
                                     sign_ext ((insn & 0xfffe), 16));
              break;
              break;
 
 
            /* 16-bit immediate, aligned (2^2, ld.l, {p}fld.l, fst.l).  */
            /* 16-bit immediate, aligned (2^2, ld.l, {p}fld.l, fst.l).  */
            case 'K':
            case 'K':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext ((insn & 0xfffc), 16));
                                     sign_ext ((insn & 0xfffc), 16));
              break;
              break;
 
 
            /* 16-bit immediate, aligned (2^3, {p}fld.d, fst.d).  */
            /* 16-bit immediate, aligned (2^3, {p}fld.d, fst.d).  */
            case 'L':
            case 'L':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext ((insn & 0xfff8), 16));
                                     sign_ext ((insn & 0xfff8), 16));
              break;
              break;
 
 
            /* 16-bit immediate, aligned (2^4, {p}fld.q, fst.q).  */
            /* 16-bit immediate, aligned (2^4, {p}fld.q, fst.q).  */
            case 'M':
            case 'M':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext ((insn & 0xfff0), 16));
                                     sign_ext ((insn & 0xfff0), 16));
              break;
              break;
 
 
            /* 5-bit immediate (zero extend).  */
            /* 5-bit immediate (zero extend).  */
            case '5':
            case '5':
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     ((insn >> 11) & 0x1f));
                                     ((insn >> 11) & 0x1f));
              break;
              break;
 
 
            /* Split 16 bit immediate (20..16:10..0).  */
            /* Split 16 bit immediate (20..16:10..0).  */
            case 's':
            case 's':
              val = ((insn >> 5) & 0xf800) | (insn & 0x07ff);
              val = ((insn >> 5) & 0xf800) | (insn & 0x07ff);
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext (val, 16));
                                     sign_ext (val, 16));
              break;
              break;
 
 
            /* Split 16 bit immediate, aligned. (2^0, st.b).  */
            /* Split 16 bit immediate, aligned. (2^0, st.b).  */
            case 'S':
            case 'S':
              val = ((insn >> 5) & 0xf800) | (insn & 0x07ff);
              val = ((insn >> 5) & 0xf800) | (insn & 0x07ff);
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext (val, 16));
                                     sign_ext (val, 16));
              break;
              break;
 
 
            /* Split 16 bit immediate, aligned. (2^1, st.s).  */
            /* Split 16 bit immediate, aligned. (2^1, st.s).  */
            case 'T':
            case 'T':
              val = ((insn >> 5) & 0xf800) | (insn & 0x07fe);
              val = ((insn >> 5) & 0xf800) | (insn & 0x07fe);
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext (val, 16));
                                     sign_ext (val, 16));
              break;
              break;
 
 
            /* Split 16 bit immediate, aligned. (2^2, st.l).  */
            /* Split 16 bit immediate, aligned. (2^2, st.l).  */
            case 'U':
            case 'U':
              val = ((insn >> 5) & 0xf800) | (insn & 0x07fc);
              val = ((insn >> 5) & 0xf800) | (insn & 0x07fc);
              (*info->fprintf_func) (info->stream, "%d",
              (*info->fprintf_func) (info->stream, "%d",
                                     sign_ext (val, 16));
                                     sign_ext (val, 16));
              break;
              break;
 
 
            /* 26-bit PC relative immediate (lbroff).  */
            /* 26-bit PC relative immediate (lbroff).  */
            case 'l':
            case 'l':
              val = sign_ext ((insn & 0x03ffffff), 26);
              val = sign_ext ((insn & 0x03ffffff), 26);
              print_br_address (info, memaddr, val);
              print_br_address (info, memaddr, val);
              break;
              break;
 
 
            /* 16-bit PC relative immediate (sbroff).  */
            /* 16-bit PC relative immediate (sbroff).  */
            case 'r':
            case 'r':
              val = sign_ext ((((insn >> 5) & 0xf800) | (insn & 0x07ff)), 16);
              val = sign_ext ((((insn >> 5) & 0xf800) | (insn & 0x07ff)), 16);
              print_br_address (info, memaddr, val);
              print_br_address (info, memaddr, val);
              break;
              break;
 
 
            default:
            default:
              (*info->fprintf_func) (info->stream, "%c", *s);
              (*info->fprintf_func) (info->stream, "%c", *s);
              break;
              break;
            }
            }
        }
        }
    }
    }
 
 
  return sizeof (insn);
  return sizeof (insn);
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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