2001-02-10 01:58:38 +01:00
|
|
|
/* s390-dis.c -- Disassemble S390 instructions
|
2007-07-05 11:49:03 +02:00
|
|
|
Copyright 2000, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
|
2001-02-10 01:58:38 +01:00
|
|
|
Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
|
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This file is part of the GNU opcodes library.
|
2001-02-10 01:58:38 +01:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
2001-02-10 01:58:38 +01:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 11:49:03 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
2001-02-10 01:58:38 +01:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
2001-02-10 01:58:38 +01:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-05 11:49:03 +02:00
|
|
|
along with this file; see the file COPYING. If not, write to the
|
|
|
|
Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2001-02-10 01:58:38 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "dis-asm.h"
|
2008-04-10 15:36:43 +02:00
|
|
|
#include "opintl.h"
|
2001-02-10 01:58:38 +01:00
|
|
|
#include "opcode/s390.h"
|
|
|
|
|
|
|
|
static int init_flag = 0;
|
|
|
|
static int opc_index[256];
|
|
|
|
static int current_arch_mask = 0;
|
|
|
|
|
2001-07-23 15:41:14 +02:00
|
|
|
/* Set up index table for first opcode byte. */
|
|
|
|
|
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
init_disasm (struct disassemble_info *info)
|
2001-02-10 01:58:38 +01:00
|
|
|
{
|
|
|
|
const struct s390_opcode *opcode;
|
|
|
|
const struct s390_opcode *opcode_end;
|
2008-04-10 15:36:43 +02:00
|
|
|
const char *p;
|
2001-02-10 01:58:38 +01:00
|
|
|
|
2001-07-23 15:41:14 +02:00
|
|
|
memset (opc_index, 0, sizeof (opc_index));
|
2001-02-10 01:58:38 +01:00
|
|
|
opcode_end = s390_opcodes + s390_num_opcodes;
|
2001-07-23 15:41:14 +02:00
|
|
|
for (opcode = s390_opcodes; opcode < opcode_end; opcode++)
|
|
|
|
{
|
|
|
|
opc_index[(int) opcode->opcode[0]] = opcode - s390_opcodes;
|
|
|
|
while ((opcode < opcode_end) &&
|
|
|
|
(opcode[1].opcode[0] == opcode->opcode[0]))
|
|
|
|
opcode++;
|
|
|
|
}
|
2008-04-10 15:36:43 +02:00
|
|
|
|
|
|
|
for (p = info->disassembler_options; p != NULL; )
|
2001-07-23 15:41:14 +02:00
|
|
|
{
|
2008-04-10 15:36:43 +02:00
|
|
|
if (CONST_STRNEQ (p, "esa"))
|
|
|
|
current_arch_mask = 1 << S390_OPCODE_ESA;
|
|
|
|
else if (CONST_STRNEQ (p, "zarch"))
|
|
|
|
current_arch_mask = 1 << S390_OPCODE_ZARCH;
|
|
|
|
else
|
|
|
|
fprintf (stderr, "Unknown S/390 disassembler option: %s\n", p);
|
|
|
|
|
|
|
|
p = strchr (p, ',');
|
|
|
|
if (p != NULL)
|
|
|
|
p++;
|
2001-07-23 15:41:14 +02:00
|
|
|
}
|
2008-04-10 15:36:43 +02:00
|
|
|
|
|
|
|
if (!current_arch_mask)
|
|
|
|
switch (info->mach)
|
|
|
|
{
|
|
|
|
case bfd_mach_s390_31:
|
|
|
|
current_arch_mask = 1 << S390_OPCODE_ESA;
|
|
|
|
break;
|
|
|
|
case bfd_mach_s390_64:
|
|
|
|
current_arch_mask = 1 << S390_OPCODE_ZARCH;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2001-02-10 01:58:38 +01:00
|
|
|
init_flag = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extracts an operand value from an instruction. */
|
|
|
|
|
|
|
|
static inline unsigned int
|
2005-07-01 13:16:33 +02:00
|
|
|
s390_extract_operand (unsigned char *insn, const struct s390_operand *operand)
|
2001-02-10 01:58:38 +01:00
|
|
|
{
|
|
|
|
unsigned int val;
|
|
|
|
int bits;
|
|
|
|
|
2001-07-23 15:41:14 +02:00
|
|
|
/* Extract fragments of the operand byte for byte. */
|
|
|
|
insn += operand->shift / 8;
|
2001-02-10 01:58:38 +01:00
|
|
|
bits = (operand->shift & 7) + operand->bits;
|
|
|
|
val = 0;
|
2001-07-23 15:41:14 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
val <<= 8;
|
|
|
|
val |= (unsigned int) *insn++;
|
|
|
|
bits -= 8;
|
|
|
|
}
|
|
|
|
while (bits > 0);
|
2001-02-10 01:58:38 +01:00
|
|
|
val >>= -bits;
|
2001-07-23 15:41:14 +02:00
|
|
|
val &= ((1U << (operand->bits - 1)) << 1) - 1;
|
|
|
|
|
* s390-dis.c (s390_extract_operand): Add support for long displacements.
* s390-mkopc.c (s390_opcode_cpu_val): Add support for cpu type z990.
* s390-opc.c (D20_20): Add define for 20 bit displacements.
(INSTR_RRF_R0RR, INSTR_RSL_R0RD, INSTR_RSY_RRRD, INSTR_RSY_RURD,
INSTR_RSY_AARD, INSTR_RXY_RRRD, INSTR_RXY_FRRD, INSTR_SIY_URD): Add
new instruction formats.
(MASK_RRF_R0RR, MASK_RSL_R0RD, MASK_RSY_RRRD, MASK_RSY_RURD,
MASK_RSY_AARD, MASK_RXY_RRRD, MASK_RXY_FRRD, MASK_SIY_URD): Likewise.
(s390_opformats): Likewise.
* s390-opc.txt: Add new instructions for cpu type z990. Add missing
hfp instructions. Add missing instructions pgin, pgout and xsch.
2003-07-01 16:47:58 +02:00
|
|
|
/* Check for special long displacement case. */
|
|
|
|
if (operand->bits == 20 && operand->shift == 20)
|
|
|
|
val = (val & 0xff) << 12 | (val & 0xfff00) >> 8;
|
|
|
|
|
2001-07-23 15:41:14 +02:00
|
|
|
/* Sign extend value if the operand is signed or pc relative. */
|
|
|
|
if ((operand->flags & (S390_OPERAND_SIGNED | S390_OPERAND_PCREL))
|
|
|
|
&& (val & (1U << (operand->bits - 1))))
|
|
|
|
val |= (-1U << (operand->bits - 1)) << 1;
|
|
|
|
|
|
|
|
/* Double value if the operand is pc relative. */
|
2001-02-10 01:58:38 +01:00
|
|
|
if (operand->flags & S390_OPERAND_PCREL)
|
|
|
|
val <<= 1;
|
2001-07-23 15:41:14 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Length x in an instructions has real length x + 1. */
|
2001-02-10 01:58:38 +01:00
|
|
|
if (operand->flags & S390_OPERAND_LENGTH)
|
|
|
|
val++;
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print a S390 instruction. */
|
|
|
|
|
|
|
|
int
|
2005-07-01 13:16:33 +02:00
|
|
|
print_insn_s390 (bfd_vma memaddr, struct disassemble_info *info)
|
2001-02-10 01:58:38 +01:00
|
|
|
{
|
|
|
|
bfd_byte buffer[6];
|
|
|
|
const struct s390_opcode *opcode;
|
|
|
|
const struct s390_opcode *opcode_end;
|
|
|
|
unsigned int value;
|
|
|
|
int status, opsize, bufsize;
|
|
|
|
char separator;
|
|
|
|
|
|
|
|
if (init_flag == 0)
|
2001-07-23 15:41:14 +02:00
|
|
|
init_disasm (info);
|
2001-02-10 01:58:38 +01:00
|
|
|
|
|
|
|
/* The output looks better if we put 6 bytes on a line. */
|
|
|
|
info->bytes_per_line = 6;
|
|
|
|
|
|
|
|
/* Every S390 instruction is max 6 bytes long. */
|
2001-07-23 15:41:14 +02:00
|
|
|
memset (buffer, 0, 6);
|
2001-02-10 01:58:38 +01:00
|
|
|
status = (*info->read_memory_func) (memaddr, buffer, 6, info);
|
2001-07-23 15:41:14 +02:00
|
|
|
if (status != 0)
|
|
|
|
{
|
|
|
|
for (bufsize = 0; bufsize < 6; bufsize++)
|
|
|
|
if ((*info->read_memory_func) (memaddr, buffer, bufsize + 1, info) != 0)
|
|
|
|
break;
|
|
|
|
if (bufsize <= 0)
|
|
|
|
{
|
|
|
|
(*info->memory_error_func) (status, memaddr, info);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* Opsize calculation looks strange but it works
|
|
|
|
00xxxxxx -> 2 bytes, 01xxxxxx/10xxxxxx -> 4 bytes,
|
|
|
|
11xxxxxx -> 6 bytes. */
|
|
|
|
opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
|
|
|
|
status = opsize > bufsize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bufsize = 6;
|
|
|
|
opsize = ((((buffer[0] >> 6) + 1) >> 1) + 1) << 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status == 0)
|
|
|
|
{
|
|
|
|
/* Find the first match in the opcode table. */
|
|
|
|
opcode_end = s390_opcodes + s390_num_opcodes;
|
|
|
|
for (opcode = s390_opcodes + opc_index[(int) buffer[0]];
|
|
|
|
(opcode < opcode_end) && (buffer[0] == opcode->opcode[0]);
|
|
|
|
opcode++)
|
|
|
|
{
|
|
|
|
const struct s390_operand *operand;
|
|
|
|
const unsigned char *opindex;
|
|
|
|
|
|
|
|
/* Check architecture. */
|
2003-03-21 14:28:09 +01:00
|
|
|
if (!(opcode->modes & current_arch_mask))
|
2001-07-23 15:41:14 +02:00
|
|
|
continue;
|
|
|
|
/* Check signature of the opcode. */
|
|
|
|
if ((buffer[1] & opcode->mask[1]) != opcode->opcode[1]
|
|
|
|
|| (buffer[2] & opcode->mask[2]) != opcode->opcode[2]
|
|
|
|
|| (buffer[3] & opcode->mask[3]) != opcode->opcode[3]
|
|
|
|
|| (buffer[4] & opcode->mask[4]) != opcode->opcode[4]
|
|
|
|
|| (buffer[5] & opcode->mask[5]) != opcode->opcode[5])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* The instruction is valid. */
|
|
|
|
if (opcode->operands[0] != 0)
|
|
|
|
(*info->fprintf_func) (info->stream, "%s\t", opcode->name);
|
|
|
|
else
|
|
|
|
(*info->fprintf_func) (info->stream, "%s", opcode->name);
|
|
|
|
|
|
|
|
/* Extract the operands. */
|
|
|
|
separator = 0;
|
|
|
|
for (opindex = opcode->operands; *opindex != 0; opindex++)
|
|
|
|
{
|
|
|
|
unsigned int value;
|
|
|
|
|
|
|
|
operand = s390_operands + *opindex;
|
|
|
|
value = s390_extract_operand (buffer, operand);
|
|
|
|
|
|
|
|
if ((operand->flags & S390_OPERAND_INDEX) && value == 0)
|
|
|
|
continue;
|
|
|
|
if ((operand->flags & S390_OPERAND_BASE) &&
|
|
|
|
value == 0 && separator == '(')
|
|
|
|
{
|
|
|
|
separator = ',';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (separator)
|
|
|
|
(*info->fprintf_func) (info->stream, "%c", separator);
|
|
|
|
|
|
|
|
if (operand->flags & S390_OPERAND_GPR)
|
|
|
|
(*info->fprintf_func) (info->stream, "%%r%i", value);
|
|
|
|
else if (operand->flags & S390_OPERAND_FPR)
|
|
|
|
(*info->fprintf_func) (info->stream, "%%f%i", value);
|
|
|
|
else if (operand->flags & S390_OPERAND_AR)
|
|
|
|
(*info->fprintf_func) (info->stream, "%%a%i", value);
|
|
|
|
else if (operand->flags & S390_OPERAND_CR)
|
|
|
|
(*info->fprintf_func) (info->stream, "%%c%i", value);
|
|
|
|
else if (operand->flags & S390_OPERAND_PCREL)
|
|
|
|
(*info->print_address_func) (memaddr + (int) value, info);
|
|
|
|
else if (operand->flags & S390_OPERAND_SIGNED)
|
|
|
|
(*info->fprintf_func) (info->stream, "%i", (int) value);
|
|
|
|
else
|
* s390-dis.c (print_insn_s390): Print unsigned operands with %u.
* s390-mkopc.c (s390_opcode_cpu_val): Add support for cpu type z9-109.
(main): Likewise.
* s390-opc.c (I32_16, U32_16, M_16): Add defines 32 bit immediates
and 4 bit optional masks.
(INSTR_RIL_RI, INSTR_RIL_RU, INSTR_RRF_M0RR, INSTR_RSE_CCRD,
INSTR_RSY_CCRD, INSTR_SSF_RRDRD): Add new instruction formats.
(MASK_RIL_RI, MASK_RIL_RU, MASK_RRF_M0RR, MASK_RSE_CCRD,
MASK_RSY_CCRD, MASK_SSF_RRDRD): Likewise.
(s390_opformats): Likewise.
* s390-opc.txt: Add new instructions for cpu type z9-109.
2005-08-12 20:03:03 +02:00
|
|
|
(*info->fprintf_func) (info->stream, "%u", value);
|
2001-07-23 15:41:14 +02:00
|
|
|
|
|
|
|
if (operand->flags & S390_OPERAND_DISP)
|
|
|
|
{
|
|
|
|
separator = '(';
|
|
|
|
}
|
|
|
|
else if (operand->flags & S390_OPERAND_BASE)
|
|
|
|
{
|
|
|
|
(*info->fprintf_func) (info->stream, ")");
|
|
|
|
separator = ',';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
separator = ',';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Found instruction, printed it, return its size. */
|
|
|
|
return opsize;
|
|
|
|
}
|
|
|
|
/* No matching instruction found, fall through to hex print. */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bufsize >= 4)
|
|
|
|
{
|
|
|
|
value = (unsigned int) buffer[0];
|
|
|
|
value = (value << 8) + (unsigned int) buffer[1];
|
|
|
|
value = (value << 8) + (unsigned int) buffer[2];
|
|
|
|
value = (value << 8) + (unsigned int) buffer[3];
|
|
|
|
(*info->fprintf_func) (info->stream, ".long\t0x%08x", value);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
else if (bufsize >= 2)
|
|
|
|
{
|
|
|
|
value = (unsigned int) buffer[0];
|
|
|
|
value = (value << 8) + (unsigned int) buffer[1];
|
|
|
|
(*info->fprintf_func) (info->stream, ".short\t0x%04x", value);
|
|
|
|
return 2;
|
2001-02-10 01:58:38 +01:00
|
|
|
}
|
2001-07-23 15:41:14 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
value = (unsigned int) buffer[0];
|
|
|
|
(*info->fprintf_func) (info->stream, ".byte\t0x%02x", value);
|
|
|
|
return 1;
|
2001-02-10 01:58:38 +01:00
|
|
|
}
|
|
|
|
}
|
2008-04-10 15:36:43 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
print_s390_disassembler_options (FILE *stream)
|
|
|
|
{
|
|
|
|
fprintf (stream, _("\n\
|
|
|
|
The following S/390 specific disassembler options are supported for use\n\
|
|
|
|
with the -M switch (multiple options should be separated by commas):\n"));
|
|
|
|
|
|
|
|
fprintf (stream, _(" esa Disassemble in ESA architecture mode\n"));
|
|
|
|
fprintf (stream, _(" zarch Disassemble in z/Architecture mode\n"));
|
|
|
|
}
|