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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.3/] [opcodes/] [s390-dis.c] - Diff between revs 1181 and 1765

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

Rev 1181 Rev 1765
/* s390-dis.c -- Disassemble S390 instructions
/* s390-dis.c -- Disassemble S390 instructions
   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
   Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
   Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
 
 
   This file is part of GDB, GAS and the GNU binutils.
   This file is part of GDB, GAS and 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 2 of the License, or
   the Free Software Foundation; either version 2 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., 59 Temple Place - Suite 330, Boston, MA
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.  */
   02111-1307, USA.  */
 
 
#include <stdio.h>
#include <stdio.h>
#include "ansidecl.h"
#include "ansidecl.h"
#include "sysdep.h"
#include "sysdep.h"
#include "dis-asm.h"
#include "dis-asm.h"
#include "opcode/s390.h"
#include "opcode/s390.h"
 
 
static int init_flag = 0;
static int init_flag = 0;
static int opc_index[256];
static int opc_index[256];
static int current_arch_mask = 0;
static int current_arch_mask = 0;
 
 
static void init_disasm PARAMS ((struct disassemble_info *));
static void init_disasm PARAMS ((struct disassemble_info *));
static unsigned int s390_extract_operand
static unsigned int s390_extract_operand
  PARAMS ((unsigned char *, const struct s390_operand *));
  PARAMS ((unsigned char *, const struct s390_operand *));
 
 
/* Set up index table for first opcode byte.  */
/* Set up index table for first opcode byte.  */
 
 
static void
static void
init_disasm (info)
init_disasm (info)
     struct disassemble_info *info;
     struct disassemble_info *info;
{
{
  const struct s390_opcode *opcode;
  const struct s390_opcode *opcode;
  const struct s390_opcode *opcode_end;
  const struct s390_opcode *opcode_end;
 
 
  memset (opc_index, 0, sizeof (opc_index));
  memset (opc_index, 0, sizeof (opc_index));
  opcode_end = s390_opcodes + s390_num_opcodes;
  opcode_end = s390_opcodes + s390_num_opcodes;
  for (opcode = s390_opcodes; opcode < opcode_end; opcode++)
  for (opcode = s390_opcodes; opcode < opcode_end; opcode++)
    {
    {
      opc_index[(int) opcode->opcode[0]] = opcode - s390_opcodes;
      opc_index[(int) opcode->opcode[0]] = opcode - s390_opcodes;
      while ((opcode < opcode_end) &&
      while ((opcode < opcode_end) &&
             (opcode[1].opcode[0] == opcode->opcode[0]))
             (opcode[1].opcode[0] == opcode->opcode[0]))
        opcode++;
        opcode++;
    }
    }
  switch (info->mach)
  switch (info->mach)
    {
    {
    case bfd_mach_s390_31:
    case bfd_mach_s390_31:
      current_arch_mask = 1 << S390_OPCODE_ESA;
      current_arch_mask = 1 << S390_OPCODE_ESA;
      break;
      break;
    case bfd_mach_s390_64:
    case bfd_mach_s390_64:
      current_arch_mask = 1 << S390_OPCODE_ESAME;
      current_arch_mask = 1 << S390_OPCODE_ESAME;
      break;
      break;
    default:
    default:
      abort ();
      abort ();
    }
    }
  init_flag = 1;
  init_flag = 1;
}
}
 
 
/* Extracts an operand value from an instruction.  */
/* Extracts an operand value from an instruction.  */
 
 
static inline unsigned int
static inline unsigned int
s390_extract_operand (insn, operand)
s390_extract_operand (insn, operand)
     unsigned char *insn;
     unsigned char *insn;
     const struct s390_operand *operand;
     const struct s390_operand *operand;
{
{
  unsigned int val;
  unsigned int val;
  int bits;
  int bits;
 
 
  /* Extract fragments of the operand byte for byte.  */
  /* Extract fragments of the operand byte for byte.  */
  insn += operand->shift / 8;
  insn += operand->shift / 8;
  bits = (operand->shift & 7) + operand->bits;
  bits = (operand->shift & 7) + operand->bits;
  val = 0;
  val = 0;
  do
  do
    {
    {
      val <<= 8;
      val <<= 8;
      val |= (unsigned int) *insn++;
      val |= (unsigned int) *insn++;
      bits -= 8;
      bits -= 8;
    }
    }
  while (bits > 0);
  while (bits > 0);
  val >>= -bits;
  val >>= -bits;
  val &= ((1U << (operand->bits - 1)) << 1) - 1;
  val &= ((1U << (operand->bits - 1)) << 1) - 1;
 
 
  /* Sign extend value if the operand is signed or pc relative.  */
  /* Sign extend value if the operand is signed or pc relative.  */
  if ((operand->flags & (S390_OPERAND_SIGNED | S390_OPERAND_PCREL))
  if ((operand->flags & (S390_OPERAND_SIGNED | S390_OPERAND_PCREL))
      && (val & (1U << (operand->bits - 1))))
      && (val & (1U << (operand->bits - 1))))
    val |= (-1U << (operand->bits - 1)) << 1;
    val |= (-1U << (operand->bits - 1)) << 1;
 
 
  /* Double value if the operand is pc relative.  */
  /* Double value if the operand is pc relative.  */
  if (operand->flags & S390_OPERAND_PCREL)
  if (operand->flags & S390_OPERAND_PCREL)
    val <<= 1;
    val <<= 1;
 
 
  /* Length x in an instructions has real length x+1.  */
  /* Length x in an instructions has real length x+1.  */
  if (operand->flags & S390_OPERAND_LENGTH)
  if (operand->flags & S390_OPERAND_LENGTH)
    val++;
    val++;
  return val;
  return val;
}
}
 
 
/* Print a S390 instruction.  */
/* Print a S390 instruction.  */
 
 
int
int
print_insn_s390 (memaddr, info)
print_insn_s390 (memaddr, info)
     bfd_vma memaddr;
     bfd_vma memaddr;
     struct disassemble_info *info;
     struct disassemble_info *info;
{
{
  bfd_byte buffer[6];
  bfd_byte buffer[6];
  const struct s390_opcode *opcode;
  const struct s390_opcode *opcode;
  const struct s390_opcode *opcode_end;
  const struct s390_opcode *opcode_end;
  unsigned int value;
  unsigned int value;
  int status, opsize, bufsize;
  int status, opsize, bufsize;
  char separator;
  char separator;
 
 
  if (init_flag == 0)
  if (init_flag == 0)
    init_disasm (info);
    init_disasm (info);
 
 
  /* The output looks better if we put 6 bytes on a line.  */
  /* The output looks better if we put 6 bytes on a line.  */
  info->bytes_per_line = 6;
  info->bytes_per_line = 6;
 
 
  /* Every S390 instruction is max 6 bytes long.  */
  /* Every S390 instruction is max 6 bytes long.  */
  memset (buffer, 0, 6);
  memset (buffer, 0, 6);
  status = (*info->read_memory_func) (memaddr, buffer, 6, info);
  status = (*info->read_memory_func) (memaddr, buffer, 6, info);
  if (status != 0)
  if (status != 0)
    {
    {
      for (bufsize = 0; bufsize < 6; bufsize++)
      for (bufsize = 0; bufsize < 6; bufsize++)
        if ((*info->read_memory_func) (memaddr, buffer, bufsize + 1, info) != 0)
        if ((*info->read_memory_func) (memaddr, buffer, bufsize + 1, info) != 0)
          break;
          break;
      if (bufsize <= 0)
      if (bufsize <= 0)
        {
        {
          (*info->memory_error_func) (status, memaddr, info);
          (*info->memory_error_func) (status, memaddr, info);
          return -1;
          return -1;
        }
        }
      /* Opsize calculation looks strange but it works
      /* Opsize calculation looks strange but it works
         00xxxxxx -> 2 bytes, 01xxxxxx/10xxxxxx -> 4 bytes,
         00xxxxxx -> 2 bytes, 01xxxxxx/10xxxxxx -> 4 bytes,
         11xxxxxx -> 6 bytes.  */
         11xxxxxx -> 6 bytes.  */
      opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
      opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
      status = opsize > bufsize;
      status = opsize > bufsize;
    }
    }
  else
  else
    {
    {
      bufsize = 6;
      bufsize = 6;
      opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
      opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
    }
    }
 
 
  if (status == 0)
  if (status == 0)
    {
    {
      /* Find the first match in the opcode table.  */
      /* Find the first match in the opcode table.  */
      opcode_end = s390_opcodes + s390_num_opcodes;
      opcode_end = s390_opcodes + s390_num_opcodes;
      for (opcode = s390_opcodes + opc_index[(int) buffer[0]];
      for (opcode = s390_opcodes + opc_index[(int) buffer[0]];
           (opcode < opcode_end) && (buffer[0] == opcode->opcode[0]);
           (opcode < opcode_end) && (buffer[0] == opcode->opcode[0]);
           opcode++)
           opcode++)
        {
        {
          const struct s390_operand *operand;
          const struct s390_operand *operand;
          const unsigned char *opindex;
          const unsigned char *opindex;
 
 
          /* Check architecture.  */
          /* Check architecture.  */
          if (!(opcode->architecture & current_arch_mask))
          if (!(opcode->architecture & current_arch_mask))
            continue;
            continue;
          /* Check signature of the opcode.  */
          /* Check signature of the opcode.  */
          if ((buffer[1] & opcode->mask[1]) != opcode->opcode[1]
          if ((buffer[1] & opcode->mask[1]) != opcode->opcode[1]
              || (buffer[2] & opcode->mask[2]) != opcode->opcode[2]
              || (buffer[2] & opcode->mask[2]) != opcode->opcode[2]
              || (buffer[3] & opcode->mask[3]) != opcode->opcode[3]
              || (buffer[3] & opcode->mask[3]) != opcode->opcode[3]
              || (buffer[4] & opcode->mask[4]) != opcode->opcode[4]
              || (buffer[4] & opcode->mask[4]) != opcode->opcode[4]
              || (buffer[5] & opcode->mask[5]) != opcode->opcode[5])
              || (buffer[5] & opcode->mask[5]) != opcode->opcode[5])
            continue;
            continue;
 
 
          /* The instruction is valid.  */
          /* The instruction is valid.  */
          if (opcode->operands[0] != 0)
          if (opcode->operands[0] != 0)
            (*info->fprintf_func) (info->stream, "%s\t", opcode->name);
            (*info->fprintf_func) (info->stream, "%s\t", opcode->name);
          else
          else
            (*info->fprintf_func) (info->stream, "%s", opcode->name);
            (*info->fprintf_func) (info->stream, "%s", opcode->name);
 
 
          /* Extract the operands.  */
          /* Extract the operands.  */
          separator = 0;
          separator = 0;
          for (opindex = opcode->operands; *opindex != 0; opindex++)
          for (opindex = opcode->operands; *opindex != 0; opindex++)
            {
            {
              unsigned int value;
              unsigned int value;
 
 
              operand = s390_operands + *opindex;
              operand = s390_operands + *opindex;
              value = s390_extract_operand (buffer, operand);
              value = s390_extract_operand (buffer, operand);
 
 
              if ((operand->flags & S390_OPERAND_INDEX) && value == 0)
              if ((operand->flags & S390_OPERAND_INDEX) && value == 0)
                continue;
                continue;
              if ((operand->flags & S390_OPERAND_BASE) &&
              if ((operand->flags & S390_OPERAND_BASE) &&
                  value == 0 && separator == '(')
                  value == 0 && separator == '(')
                {
                {
                  separator = ',';
                  separator = ',';
                  continue;
                  continue;
                }
                }
 
 
              if (separator)
              if (separator)
                (*info->fprintf_func) (info->stream, "%c", separator);
                (*info->fprintf_func) (info->stream, "%c", separator);
 
 
              if (operand->flags & S390_OPERAND_GPR)
              if (operand->flags & S390_OPERAND_GPR)
                (*info->fprintf_func) (info->stream, "%%r%i", value);
                (*info->fprintf_func) (info->stream, "%%r%i", value);
              else if (operand->flags & S390_OPERAND_FPR)
              else if (operand->flags & S390_OPERAND_FPR)
                (*info->fprintf_func) (info->stream, "%%f%i", value);
                (*info->fprintf_func) (info->stream, "%%f%i", value);
              else if (operand->flags & S390_OPERAND_AR)
              else if (operand->flags & S390_OPERAND_AR)
                (*info->fprintf_func) (info->stream, "%%a%i", value);
                (*info->fprintf_func) (info->stream, "%%a%i", value);
              else if (operand->flags & S390_OPERAND_CR)
              else if (operand->flags & S390_OPERAND_CR)
                (*info->fprintf_func) (info->stream, "%%c%i", value);
                (*info->fprintf_func) (info->stream, "%%c%i", value);
              else if (operand->flags & S390_OPERAND_PCREL)
              else if (operand->flags & S390_OPERAND_PCREL)
                (*info->print_address_func) (memaddr + (int) value, info);
                (*info->print_address_func) (memaddr + (int) value, info);
              else if (operand->flags & S390_OPERAND_SIGNED)
              else if (operand->flags & S390_OPERAND_SIGNED)
                (*info->fprintf_func) (info->stream, "%i", (int) value);
                (*info->fprintf_func) (info->stream, "%i", (int) value);
              else
              else
                (*info->fprintf_func) (info->stream, "%i", value);
                (*info->fprintf_func) (info->stream, "%i", value);
 
 
              if (operand->flags & S390_OPERAND_DISP)
              if (operand->flags & S390_OPERAND_DISP)
                {
                {
                  separator = '(';
                  separator = '(';
                }
                }
              else if (operand->flags & S390_OPERAND_BASE)
              else if (operand->flags & S390_OPERAND_BASE)
                {
                {
                  (*info->fprintf_func) (info->stream, ")");
                  (*info->fprintf_func) (info->stream, ")");
                  separator = ',';
                  separator = ',';
                }
                }
              else
              else
                separator = ',';
                separator = ',';
            }
            }
 
 
          /* Found instruction, printed it, return its size.  */
          /* Found instruction, printed it, return its size.  */
          return opsize;
          return opsize;
        }
        }
      /* No matching instruction found, fall through to hex print.  */
      /* No matching instruction found, fall through to hex print.  */
    }
    }
 
 
  if (bufsize >= 4)
  if (bufsize >= 4)
    {
    {
      value = (unsigned int) buffer[0];
      value = (unsigned int) buffer[0];
      value = (value << 8) + (unsigned int) buffer[1];
      value = (value << 8) + (unsigned int) buffer[1];
      value = (value << 8) + (unsigned int) buffer[2];
      value = (value << 8) + (unsigned int) buffer[2];
      value = (value << 8) + (unsigned int) buffer[3];
      value = (value << 8) + (unsigned int) buffer[3];
      (*info->fprintf_func) (info->stream, ".long\t0x%08x", value);
      (*info->fprintf_func) (info->stream, ".long\t0x%08x", value);
      return 4;
      return 4;
    }
    }
  else if (bufsize >= 2)
  else if (bufsize >= 2)
    {
    {
      value = (unsigned int) buffer[0];
      value = (unsigned int) buffer[0];
      value = (value << 8) + (unsigned int) buffer[1];
      value = (value << 8) + (unsigned int) buffer[1];
      (*info->fprintf_func) (info->stream, ".short\t0x%04x", value);
      (*info->fprintf_func) (info->stream, ".short\t0x%04x", value);
      return 2;
      return 2;
    }
    }
  else
  else
    {
    {
      value = (unsigned int) buffer[0];
      value = (unsigned int) buffer[0];
      (*info->fprintf_func) (info->stream, ".byte\t0x%02x", value);
      (*info->fprintf_func) (info->stream, ".byte\t0x%02x", value);
      return 1;
      return 1;
    }
    }
}
}
 
 

powered by: WebSVN 2.1.0

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