1999-05-03 09:29:11 +02:00
|
|
|
/* Instruction printing code for the ARC.
|
2007-07-05 11:49:03 +02:00
|
|
|
Copyright 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2005, 2007
|
2001-03-13 23:58:38 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Contributed by Doug Evans (dje@cygnus.com).
|
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This file is part of libopcodes.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
2001-01-11 22:20:20 +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.
|
1999-05-03 09:29:11 +02: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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-07-01 13:16:33 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-05-25 14:55:19 +02:00
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "libiberty.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "dis-asm.h"
|
|
|
|
#include "opcode/arc.h"
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
#include "elf/arc.h"
|
2001-01-11 22:20:20 +01:00
|
|
|
#include <string.h>
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "opintl.h"
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include "arc-dis.h"
|
|
|
|
#include "arc-ext.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
#ifndef dbg
|
|
|
|
#define dbg (0)
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
/* Classification of the opcodes for the decoder to print
|
|
|
|
the instructions. */
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
2005-03-03 16:42:05 +01:00
|
|
|
CLASS_A4_ARITH,
|
|
|
|
CLASS_A4_OP3_GENERAL,
|
|
|
|
CLASS_A4_FLAG,
|
|
|
|
/* All branches other than JC. */
|
|
|
|
CLASS_A4_BRANCH,
|
|
|
|
CLASS_A4_JC ,
|
|
|
|
/* All loads other than immediate
|
|
|
|
indexed loads. */
|
|
|
|
CLASS_A4_LD0,
|
|
|
|
CLASS_A4_LD1,
|
|
|
|
CLASS_A4_ST,
|
|
|
|
CLASS_A4_SR,
|
|
|
|
/* All single operand instructions. */
|
|
|
|
CLASS_A4_OP3_SUBOPC3F,
|
|
|
|
CLASS_A4_LR
|
|
|
|
} a4_decoding_class;
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
#define BIT(word,n) ((word) & (1 << n))
|
|
|
|
#define BITS(word,s,e) (((word) << (31 - e)) >> (s + (31 - e)))
|
|
|
|
#define OPCODE(word) (BITS ((word), 27, 31))
|
|
|
|
#define FIELDA(word) (BITS ((word), 21, 26))
|
|
|
|
#define FIELDB(word) (BITS ((word), 15, 20))
|
|
|
|
#define FIELDC(word) (BITS ((word), 9, 14))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* FIELD D is signed in all of its uses, so we make sure argument is
|
|
|
|
treated as signed for bit shifting purposes: */
|
2001-08-21 10:51:12 +02:00
|
|
|
#define FIELDD(word) (BITS (((signed int)word), 0, 8))
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2001-09-26 03:54:07 +02:00
|
|
|
#define PUT_NEXT_WORD_IN(a) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (is_limm == 1 && !NEXT_WORD (1)) \
|
|
|
|
mwerror (state, _("Illegal limm reference in last instruction!\n")); \
|
|
|
|
a = state->words[1]; \
|
|
|
|
} \
|
2001-01-11 22:20:20 +01:00
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_FLAG_COND_NULLIFY() \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (is_shimm == 0) \
|
|
|
|
{ \
|
|
|
|
flag = BIT (state->words[0], 8); \
|
|
|
|
state->nullifyMode = BITS (state->words[0], 5, 6); \
|
|
|
|
cond = BITS (state->words[0], 0, 4); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_COND() \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (is_shimm == 0) \
|
|
|
|
cond = BITS (state->words[0], 0, 4); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_FIELD(field) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (field == 62) \
|
|
|
|
{ \
|
|
|
|
is_limm++; \
|
|
|
|
field##isReg = 0; \
|
|
|
|
PUT_NEXT_WORD_IN (field); \
|
|
|
|
limm_value = field; \
|
|
|
|
} \
|
|
|
|
else if (field > 60) \
|
|
|
|
{ \
|
|
|
|
field##isReg = 0; \
|
|
|
|
is_shimm++; \
|
|
|
|
flag = (field == 61); \
|
|
|
|
field = FIELDD (state->words[0]); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_FIELD_A() \
|
|
|
|
do \
|
|
|
|
{ \
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldA = FIELDA (state->words[0]); \
|
2001-01-11 22:20:20 +01:00
|
|
|
if (fieldA > 60) \
|
|
|
|
{ \
|
|
|
|
fieldAisReg = 0; \
|
|
|
|
fieldA = 0; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_FIELD_B() \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
fieldB = FIELDB (state->words[0]); \
|
|
|
|
CHECK_FIELD (fieldB); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define CHECK_FIELD_C() \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
fieldC = FIELDC (state->words[0]); \
|
|
|
|
CHECK_FIELD (fieldC); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
#define IS_SMALL(x) (((field##x) < 256) && ((field##x) > -257))
|
|
|
|
#define IS_REG(x) (field##x##isReg)
|
|
|
|
#define WRITE_FORMAT_LB_Rx_RB(x) WRITE_FORMAT (x, "[","]","","")
|
|
|
|
#define WRITE_FORMAT_x_COMMA_LB(x) WRITE_FORMAT (x, "",",[","",",[")
|
|
|
|
#define WRITE_FORMAT_COMMA_x_RB(x) WRITE_FORMAT (x, ",","]",",","]")
|
|
|
|
#define WRITE_FORMAT_x_RB(x) WRITE_FORMAT (x, "","]","","]")
|
|
|
|
#define WRITE_FORMAT_COMMA_x(x) WRITE_FORMAT (x, ",","",",","")
|
|
|
|
#define WRITE_FORMAT_x_COMMA(x) WRITE_FORMAT (x, "",",","",",")
|
|
|
|
#define WRITE_FORMAT_x(x) WRITE_FORMAT (x, "","","","")
|
2001-01-11 22:20:20 +01:00
|
|
|
#define WRITE_FORMAT(x,cb1,ca1,cb,ca) strcat (formatString, \
|
|
|
|
(IS_REG (x) ? cb1"%r"ca1 : \
|
|
|
|
usesAuxReg ? cb"%a"ca : \
|
|
|
|
IS_SMALL (x) ? cb"%d"ca : cb"%h"ca))
|
2001-08-21 10:51:12 +02:00
|
|
|
#define WRITE_FORMAT_RB() strcat (formatString, "]")
|
2001-01-11 22:20:20 +01:00
|
|
|
#define WRITE_COMMENT(str) (state->comm[state->commNum++] = (str))
|
2001-08-21 10:51:12 +02:00
|
|
|
#define WRITE_NOP_COMMENT() if (!fieldAisReg && !flag) WRITE_COMMENT ("nop");
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
#define NEXT_WORD(x) (offset += 4, state->words[x])
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
#define add_target(x) (state->targets[state->tcnt++] = (x))
|
2001-01-11 22:20:20 +01:00
|
|
|
|
|
|
|
static char comment_prefix[] = "\t; ";
|
|
|
|
|
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
core_reg_name (struct arcDisState * state, int val)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
if (state->coreRegName)
|
|
|
|
return (*state->coreRegName)(state->_this, val);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
aux_reg_name (struct arcDisState * state, int val)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
if (state->auxRegName)
|
|
|
|
return (*state->auxRegName)(state->_this, val);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
cond_code_name (struct arcDisState * state, int val)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
if (state->condCodeName)
|
|
|
|
return (*state->condCodeName)(state->_this, val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
instruction_name (struct arcDisState * state,
|
|
|
|
int op1,
|
|
|
|
int op2,
|
|
|
|
int * flags)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
if (state->instName)
|
|
|
|
return (*state->instName)(state->_this, op1, op2, flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
mwerror (struct arcDisState * state, const char * msg)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
if (state->err != 0)
|
|
|
|
(*state->err)(state->_this, (msg));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
post_address (struct arcDisState * state, int addr)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
static char id[3 * ARRAY_SIZE (state->addresses)];
|
|
|
|
int j, i = state->acnt;
|
|
|
|
|
|
|
|
if (i < ((int) ARRAY_SIZE (state->addresses)))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
state->addresses[i] = addr;
|
|
|
|
++state->acnt;
|
|
|
|
j = i*3;
|
|
|
|
id[j+0] = '@';
|
|
|
|
id[j+1] = '0'+i;
|
|
|
|
id[j+2] = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
return id + j;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
return "";
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (struct arcDisState *state, char *buf, const char *format, ...)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
char *bp;
|
2001-01-11 22:20:20 +01:00
|
|
|
const char *p;
|
|
|
|
int size, leading_zero, regMap[2];
|
|
|
|
long auxNum;
|
2005-07-01 13:16:33 +02:00
|
|
|
va_list ap;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
va_start (ap, format);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
bp = buf;
|
2001-01-11 22:20:20 +01:00
|
|
|
*bp = 0;
|
|
|
|
p = format;
|
|
|
|
auxNum = -1;
|
|
|
|
regMap[0] = 0;
|
|
|
|
regMap[1] = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
while (1)
|
2001-01-11 22:20:20 +01:00
|
|
|
switch (*p++)
|
|
|
|
{
|
2001-09-26 03:54:07 +02:00
|
|
|
case 0:
|
|
|
|
goto DOCOMM; /* (return) */
|
2001-08-21 10:51:12 +02:00
|
|
|
default:
|
|
|
|
*bp++ = p[-1];
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
size = 0;
|
|
|
|
leading_zero = 0;
|
|
|
|
RETRY: ;
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (*p++)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case '0':
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
|
|
|
{
|
|
|
|
/* size. */
|
|
|
|
size = p[-1] - '0';
|
|
|
|
if (size == 0)
|
|
|
|
leading_zero = 1; /* e.g. %08x */
|
|
|
|
while (*p >= '0' && *p <= '9')
|
|
|
|
{
|
|
|
|
size = size * 10 + *p - '0';
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
goto RETRY;
|
|
|
|
}
|
|
|
|
#define inc_bp() bp = bp + strlen (bp)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
case 'h':
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
unsigned u = va_arg (ap, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Hex. We can change the format to 0x%08x in
|
|
|
|
one place, here, if we wish.
|
|
|
|
We add underscores for easy reading. */
|
2001-08-21 10:51:12 +02:00
|
|
|
if (u > 65536)
|
2001-01-11 22:20:20 +01:00
|
|
|
sprintf (bp, "0x%x_%04x", u >> 16, u & 0xffff);
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
sprintf (bp, "0x%x", u);
|
|
|
|
inc_bp ();
|
2001-08-21 10:51:12 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
case 'X': case 'x':
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
int val = va_arg (ap, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
if (size != 0)
|
2001-01-11 22:20:20 +01:00
|
|
|
if (leading_zero)
|
|
|
|
sprintf (bp, "%0*x", size, val);
|
|
|
|
else
|
|
|
|
sprintf (bp, "%*x", size, val);
|
|
|
|
else
|
|
|
|
sprintf (bp, "%x", val);
|
|
|
|
inc_bp ();
|
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
case 'd':
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
int val = va_arg (ap, int);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
if (size != 0)
|
|
|
|
sprintf (bp, "%*d", size, val);
|
|
|
|
else
|
|
|
|
sprintf (bp, "%d", val);
|
|
|
|
inc_bp ();
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
case 'r':
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
/* Register. */
|
|
|
|
int val = va_arg (ap, int);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
#define REG2NAME(num, name) case num: sprintf (bp, ""name); \
|
|
|
|
regMap[(num < 32) ? 0 : 1] |= 1 << (num - ((num < 32) ? 0 : 32)); break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
switch (val)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
REG2NAME (26, "gp");
|
|
|
|
REG2NAME (27, "fp");
|
|
|
|
REG2NAME (28, "sp");
|
|
|
|
REG2NAME (29, "ilink1");
|
|
|
|
REG2NAME (30, "ilink2");
|
|
|
|
REG2NAME (31, "blink");
|
|
|
|
REG2NAME (60, "lp_count");
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
const char * ext;
|
|
|
|
|
|
|
|
ext = core_reg_name (state, val);
|
|
|
|
if (ext)
|
|
|
|
sprintf (bp, "%s", ext);
|
|
|
|
else
|
|
|
|
sprintf (bp,"r%d",val);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
inc_bp ();
|
|
|
|
} break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
case 'a':
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
/* Aux Register. */
|
|
|
|
int val = va_arg (ap, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
#define AUXREG2NAME(num, name) case num: sprintf (bp,name); break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (val)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
AUXREG2NAME (0x0, "status");
|
|
|
|
AUXREG2NAME (0x1, "semaphore");
|
|
|
|
AUXREG2NAME (0x2, "lp_start");
|
|
|
|
AUXREG2NAME (0x3, "lp_end");
|
|
|
|
AUXREG2NAME (0x4, "identity");
|
|
|
|
AUXREG2NAME (0x5, "debug");
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
const char *ext;
|
|
|
|
|
|
|
|
ext = aux_reg_name (state, val);
|
|
|
|
if (ext)
|
|
|
|
sprintf (bp, "%s", ext);
|
|
|
|
else
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, bp, "%h", val);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
inc_bp ();
|
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
case 's':
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
sprintf (bp, "%s", va_arg (ap, char *));
|
|
|
|
inc_bp ();
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
default:
|
|
|
|
fprintf (stderr, "?? format %c\n", p[-1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DOCOMM: *bp = 0;
|
2005-07-01 13:16:33 +02:00
|
|
|
va_end (ap);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
write_comments_(struct arcDisState * state,
|
|
|
|
int shimm,
|
|
|
|
int is_limm,
|
|
|
|
long limm_value)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
if (state->commentBuffer != 0)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
if (is_limm)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
const char *name = post_address (state, limm_value + shimm);
|
|
|
|
|
|
|
|
if (*name != 0)
|
|
|
|
WRITE_COMMENT (name);
|
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
for (i = 0; i < state->commNum; i++)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
if (i == 0)
|
|
|
|
strcpy (state->commentBuffer, comment_prefix);
|
1999-05-03 09:29:11 +02:00
|
|
|
else
|
2001-08-21 10:51:12 +02:00
|
|
|
strcat (state->commentBuffer, ", ");
|
2001-09-26 03:54:07 +02:00
|
|
|
strncat (state->commentBuffer, state->comm[i],
|
|
|
|
sizeof (state->commentBuffer));
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
#define write_comments2(x) write_comments_ (state, x, is_limm, limm_value)
|
|
|
|
#define write_comments() write_comments2 (0)
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
static const char *condName[] =
|
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
/* 0..15. */
|
2001-08-21 10:51:12 +02:00
|
|
|
"" , "z" , "nz" , "p" , "n" , "c" , "nc" , "v" ,
|
2001-01-11 22:20:20 +01:00
|
|
|
"nv" , "gt" , "ge" , "lt" , "le" , "hi" , "ls" , "pnz"
|
|
|
|
};
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
static void
|
2005-07-01 13:16:33 +02:00
|
|
|
write_instr_name_(struct arcDisState * state,
|
|
|
|
const char * instrName,
|
|
|
|
int cond,
|
|
|
|
int condCodeIsPartOfName,
|
|
|
|
int flag,
|
|
|
|
int signExtend,
|
|
|
|
int addrWriteBack,
|
|
|
|
int directMem)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
strcpy (state->instrBuffer, instrName);
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
if (cond > 0)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
const char *cc = 0;
|
|
|
|
|
|
|
|
if (!condCodeIsPartOfName)
|
|
|
|
strcat (state->instrBuffer, ".");
|
|
|
|
|
|
|
|
if (cond < 16)
|
|
|
|
cc = condName[cond];
|
|
|
|
else
|
|
|
|
cc = cond_code_name (state, cond);
|
|
|
|
|
|
|
|
if (!cc)
|
|
|
|
cc = "???";
|
|
|
|
|
|
|
|
strcat (state->instrBuffer, cc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag)
|
|
|
|
strcat (state->instrBuffer, ".f");
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (state->nullifyMode)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case BR_exec_always:
|
|
|
|
strcat (state->instrBuffer, ".d");
|
|
|
|
break;
|
|
|
|
case BR_exec_when_jump:
|
|
|
|
strcat (state->instrBuffer, ".jd");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (signExtend)
|
|
|
|
strcat (state->instrBuffer, ".x");
|
|
|
|
|
|
|
|
if (addrWriteBack)
|
|
|
|
strcat (state->instrBuffer, ".a");
|
|
|
|
|
|
|
|
if (directMem)
|
|
|
|
strcat (state->instrBuffer, ".di");
|
|
|
|
}
|
|
|
|
|
|
|
|
#define write_instr_name() \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
write_instr_name_(state, instrName,cond, condCodeIsPartOfName, \
|
|
|
|
flag, signExtend, addrWriteBack, directMem); \
|
|
|
|
formatString[0] = '\0'; \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
enum
|
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
op_LD0 = 0, op_LD1 = 1, op_ST = 2, op_3 = 3,
|
2001-01-11 22:20:20 +01:00
|
|
|
op_BC = 4, op_BLC = 5, op_LPC = 6, op_JC = 7,
|
2001-08-21 10:51:12 +02:00
|
|
|
op_ADD = 8, op_ADC = 9, op_SUB = 10, op_SBC = 11,
|
2001-01-11 22:20:20 +01:00
|
|
|
op_AND = 12, op_OR = 13, op_BIC = 14, op_XOR = 15
|
|
|
|
};
|
|
|
|
|
|
|
|
extern disassemble_info tm_print_insn_info;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
static int
|
2005-07-01 13:16:33 +02:00
|
|
|
dsmOneArcInst (bfd_vma addr, struct arcDisState * state)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
int condCodeIsPartOfName = 0;
|
2005-03-03 16:42:05 +01:00
|
|
|
a4_decoding_class decodingClass;
|
2001-01-11 22:20:20 +01:00
|
|
|
const char * instrName;
|
|
|
|
int repeatsOp = 0;
|
|
|
|
int fieldAisReg = 1;
|
|
|
|
int fieldBisReg = 1;
|
|
|
|
int fieldCisReg = 1;
|
|
|
|
int fieldA;
|
|
|
|
int fieldB;
|
|
|
|
int fieldC = 0;
|
|
|
|
int flag = 0;
|
|
|
|
int cond = 0;
|
|
|
|
int is_shimm = 0;
|
|
|
|
int is_limm = 0;
|
|
|
|
long limm_value = 0;
|
|
|
|
int signExtend = 0;
|
|
|
|
int addrWriteBack = 0;
|
|
|
|
int directMem = 0;
|
|
|
|
int is_linked = 0;
|
|
|
|
int offset = 0;
|
|
|
|
int usesAuxReg = 0;
|
|
|
|
int flags;
|
|
|
|
int ignoreFirstOpd;
|
|
|
|
char formatString[60];
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
state->instructionLen = 4;
|
|
|
|
state->nullifyMode = BR_exec_when_no_jump;
|
|
|
|
state->opWidth = 12;
|
|
|
|
state->isBranch = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
state->_mem_load = 0;
|
|
|
|
state->_ea_present = 0;
|
|
|
|
state->_load_len = 0;
|
|
|
|
state->ea_reg1 = no_reg;
|
|
|
|
state->ea_reg2 = no_reg;
|
|
|
|
state->_offset = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
if (! NEXT_WORD (0))
|
|
|
|
return 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
state->_opcode = OPCODE (state->words[0]);
|
|
|
|
instrName = 0;
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_ARITH; /* default! */
|
2001-01-11 22:20:20 +01:00
|
|
|
repeatsOp = 0;
|
|
|
|
condCodeIsPartOfName=0;
|
|
|
|
state->commNum = 0;
|
|
|
|
state->tcnt = 0;
|
|
|
|
state->acnt = 0;
|
|
|
|
state->flow = noflow;
|
|
|
|
ignoreFirstOpd = 0;
|
|
|
|
|
|
|
|
if (state->commentBuffer)
|
|
|
|
state->commentBuffer[0] = '\0';
|
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (state->_opcode)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
case op_LD0:
|
|
|
|
switch (BITS (state->words[0],1,2))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
instrName = "ld";
|
|
|
|
state->_load_len = 4;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
instrName = "ldb";
|
|
|
|
state->_load_len = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
instrName = "ldw";
|
|
|
|
state->_load_len = 2;
|
|
|
|
break;
|
|
|
|
default:
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "??? (0[3])";
|
2001-01-11 22:20:20 +01:00
|
|
|
state->flow = invalid_instr;
|
|
|
|
break;
|
|
|
|
}
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_LD0;
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
case op_LD1:
|
|
|
|
if (BIT (state->words[0],13))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "lr";
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_LR;
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
switch (BITS (state->words[0], 10, 11))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
case 0:
|
|
|
|
instrName = "ld";
|
|
|
|
state->_load_len = 4;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
instrName = "ldb";
|
|
|
|
state->_load_len = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
instrName = "ldw";
|
|
|
|
state->_load_len = 2;
|
|
|
|
break;
|
|
|
|
default:
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "??? (1[3])";
|
2001-01-11 22:20:20 +01:00
|
|
|
state->flow = invalid_instr;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_LD1;
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_ST:
|
2005-07-01 13:16:33 +02:00
|
|
|
if (BIT (state->words[0], 25))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
instrName = "sr";
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_SR;
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
switch (BITS (state->words[0], 22, 23))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
instrName = "st";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
instrName = "stb";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
instrName = "stw";
|
|
|
|
break;
|
|
|
|
default:
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "??? (2[3])";
|
2001-01-11 22:20:20 +01:00
|
|
|
state->flow = invalid_instr;
|
|
|
|
break;
|
|
|
|
}
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_ST;
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_3:
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_OP3_GENERAL; /* default for opcode 3... */
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (FIELDC (state->words[0]))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case 0:
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "flag";
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_FLAG;
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
instrName = "asr";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
instrName = "lsr";
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
instrName = "ror";
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
instrName = "rrc";
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
instrName = "sexb";
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
instrName = "sexw";
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
instrName = "extb";
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
instrName = "extw";
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
case 0x3f:
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_OP3_SUBOPC3F;
|
2005-07-01 13:16:33 +02:00
|
|
|
switch (FIELDD (state->words[0]))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
instrName = "brk";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
instrName = "sleep";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
instrName = "swi";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
instrName = "???";
|
|
|
|
state->flow=invalid_instr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* ARC Extension Library Instructions
|
|
|
|
NOTE: We assume that extension codes are these instrs. */
|
|
|
|
default:
|
|
|
|
instrName = instruction_name (state,
|
|
|
|
state->_opcode,
|
|
|
|
FIELDC (state->words[0]),
|
2001-09-26 03:54:07 +02:00
|
|
|
&flags);
|
2001-01-11 22:20:20 +01:00
|
|
|
if (!instrName)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
instrName = "???";
|
|
|
|
state->flow = invalid_instr;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
if (flags & IGNORE_FIRST_OPD)
|
|
|
|
ignoreFirstOpd = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_BC:
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "b";
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_BLC:
|
|
|
|
if (!instrName)
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "bl";
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_LPC:
|
|
|
|
if (!instrName)
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "lp";
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_JC:
|
|
|
|
if (!instrName)
|
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
if (BITS (state->words[0],9,9))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "jl";
|
2001-01-11 22:20:20 +01:00
|
|
|
is_linked = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-08-21 10:51:12 +02:00
|
|
|
instrName = "j";
|
2001-01-11 22:20:20 +01:00
|
|
|
is_linked = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
condCodeIsPartOfName = 1;
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = ((state->_opcode == op_JC) ? CLASS_A4_JC : CLASS_A4_BRANCH );
|
2001-01-11 22:20:20 +01:00
|
|
|
state->isBranch = 1;
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_ADD:
|
|
|
|
case op_ADC:
|
|
|
|
case op_AND:
|
|
|
|
repeatsOp = (FIELDC (state->words[0]) == FIELDB (state->words[0]));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-08-21 10:51:12 +02:00
|
|
|
switch (state->_opcode)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
case op_ADD:
|
|
|
|
instrName = (repeatsOp ? "asl" : "add");
|
|
|
|
break;
|
|
|
|
case op_ADC:
|
|
|
|
instrName = (repeatsOp ? "rlc" : "adc");
|
|
|
|
break;
|
|
|
|
case op_AND:
|
|
|
|
instrName = (repeatsOp ? "mov" : "and");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_SUB: instrName = "sub";
|
|
|
|
break;
|
|
|
|
case op_SBC: instrName = "sbc";
|
|
|
|
break;
|
|
|
|
case op_OR: instrName = "or";
|
|
|
|
break;
|
|
|
|
case op_BIC: instrName = "bic";
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
case op_XOR:
|
|
|
|
if (state->words[0] == 0x7fffffff)
|
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
/* NOP encoded as xor -1, -1, -1. */
|
2001-01-11 22:20:20 +01:00
|
|
|
instrName = "nop";
|
2005-03-03 16:42:05 +01:00
|
|
|
decodingClass = CLASS_A4_OP3_SUBOPC3F;
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
instrName = "xor";
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
default:
|
|
|
|
instrName = instruction_name (state,state->_opcode,0,&flags);
|
|
|
|
/* if (instrName) printf("FLAGS=0x%x\n", flags); */
|
|
|
|
if (!instrName)
|
|
|
|
{
|
|
|
|
instrName = "???";
|
|
|
|
state->flow=invalid_instr;
|
|
|
|
}
|
|
|
|
if (flags & IGNORE_FIRST_OPD)
|
|
|
|
ignoreFirstOpd = 1;
|
|
|
|
break;
|
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
fieldAisReg = fieldBisReg = fieldCisReg = 1; /* Assume regs for now. */
|
|
|
|
flag = cond = is_shimm = is_limm = 0;
|
|
|
|
state->nullifyMode = BR_exec_when_no_jump; /* 0 */
|
|
|
|
signExtend = addrWriteBack = directMem = 0;
|
|
|
|
usesAuxReg = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
switch (decodingClass)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_ARITH:
|
2001-01-11 22:20:20 +01:00
|
|
|
CHECK_FIELD_A ();
|
|
|
|
CHECK_FIELD_B ();
|
|
|
|
if (!repeatsOp)
|
|
|
|
CHECK_FIELD_C ();
|
|
|
|
CHECK_FLAG_COND_NULLIFY ();
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
2001-08-21 10:51:12 +02:00
|
|
|
if (!ignoreFirstOpd)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
WRITE_FORMAT_x (A);
|
|
|
|
WRITE_FORMAT_COMMA_x (B);
|
|
|
|
if (!repeatsOp)
|
|
|
|
WRITE_FORMAT_COMMA_x (C);
|
|
|
|
WRITE_NOP_COMMENT ();
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldA, fieldB, fieldC);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
WRITE_FORMAT_x (B);
|
|
|
|
if (!repeatsOp)
|
|
|
|
WRITE_FORMAT_COMMA_x (C);
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldB, fieldC);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_OP3_GENERAL:
|
2001-01-11 22:20:20 +01:00
|
|
|
CHECK_FIELD_A ();
|
|
|
|
CHECK_FIELD_B ();
|
|
|
|
CHECK_FLAG_COND_NULLIFY ();
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
2001-08-21 10:51:12 +02:00
|
|
|
if (!ignoreFirstOpd)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
WRITE_FORMAT_x (A);
|
|
|
|
WRITE_FORMAT_COMMA_x (B);
|
|
|
|
WRITE_NOP_COMMENT ();
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldA, fieldB);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
WRITE_FORMAT_x (B);
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString, fieldB);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_FLAG:
|
2001-01-11 22:20:20 +01:00
|
|
|
CHECK_FIELD_B ();
|
|
|
|
CHECK_FLAG_COND_NULLIFY ();
|
2005-07-01 13:16:33 +02:00
|
|
|
flag = 0; /* This is the FLAG instruction -- it's redundant. */
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
|
|
|
WRITE_FORMAT_x (B);
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString, fieldB);
|
2001-01-11 22:20:20 +01:00
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_BRANCH:
|
2001-01-11 22:20:20 +01:00
|
|
|
fieldA = BITS (state->words[0],7,26) << 2;
|
2005-07-01 13:16:33 +02:00
|
|
|
fieldA = (fieldA << 10) >> 10; /* Make it signed. */
|
2001-01-11 22:20:20 +01:00
|
|
|
fieldA += addr + 4;
|
|
|
|
CHECK_FLAG_COND_NULLIFY ();
|
|
|
|
flag = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
|
|
|
/* This address could be a label we know. Convert it. */
|
2001-08-21 10:51:12 +02:00
|
|
|
if (state->_opcode != op_LPC /* LP */)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2001-09-26 03:54:07 +02:00
|
|
|
add_target (fieldA); /* For debugger. */
|
|
|
|
state->flow = state->_opcode == op_BLC /* BL */
|
|
|
|
? direct_call
|
|
|
|
: direct_jump;
|
|
|
|
/* indirect calls are achieved by "lr blink,[status];
|
|
|
|
lr dest<- func addr; j [dest]" */
|
2001-08-21 10:51:12 +02:00
|
|
|
}
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
strcat (formatString, "%s"); /* Address/label name. */
|
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
post_address (state, fieldA));
|
2001-01-11 22:20:20 +01:00
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_JC:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* For op_JC -- jump to address specified.
|
|
|
|
Also covers jump and link--bit 9 of the instr. word
|
|
|
|
selects whether linked, thus "is_linked" is set above. */
|
|
|
|
fieldA = 0;
|
|
|
|
CHECK_FIELD_B ();
|
|
|
|
CHECK_FLAG_COND_NULLIFY ();
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
if (!fieldBisReg)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldAisReg = 0;
|
2005-07-01 13:16:33 +02:00
|
|
|
fieldA = (fieldB >> 25) & 0x7F; /* Flags. */
|
2001-01-11 22:20:20 +01:00
|
|
|
fieldB = (fieldB & 0xFFFFFF) << 2;
|
|
|
|
state->flow = is_linked ? direct_call : direct_jump;
|
|
|
|
add_target (fieldB);
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Screwy JLcc requires .jd mode to execute correctly
|
|
|
|
but we pretend it is .nd (no delay slot). */
|
2001-01-11 22:20:20 +01:00
|
|
|
if (is_linked && state->nullifyMode == BR_exec_when_jump)
|
|
|
|
state->nullifyMode = BR_exec_when_no_jump;
|
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
state->flow = is_linked ? indirect_call : indirect_jump;
|
|
|
|
/* We should also treat this as indirect call if NOT linked
|
2005-07-01 13:16:33 +02:00
|
|
|
but the preceding instruction was a "lr blink,[status]"
|
|
|
|
and we have a delay slot with "add blink,blink,2".
|
|
|
|
For now we can't detect such. */
|
2001-01-11 22:20:20 +01:00
|
|
|
state->register_for_indirect_jump = fieldB;
|
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
2001-08-21 10:51:12 +02:00
|
|
|
strcat (formatString,
|
2005-07-01 13:16:33 +02:00
|
|
|
IS_REG (B) ? "[%r]" : "%s"); /* Address/label name. */
|
2001-08-21 10:51:12 +02:00
|
|
|
if (fieldA != 0)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldAisReg = 0;
|
|
|
|
WRITE_FORMAT_COMMA_x (A);
|
|
|
|
}
|
|
|
|
if (IS_REG (B))
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString, fieldB, fieldA);
|
2001-01-11 22:20:20 +01:00
|
|
|
else
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-01-11 22:20:20 +01:00
|
|
|
post_address (state, fieldB), fieldA);
|
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_LD0:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* LD instruction.
|
|
|
|
B and C can be regs, or one (both?) can be limm. */
|
|
|
|
CHECK_FIELD_A ();
|
|
|
|
CHECK_FIELD_B ();
|
|
|
|
CHECK_FIELD_C ();
|
|
|
|
if (dbg)
|
|
|
|
printf ("5:b reg %d %d c reg %d %d \n",
|
|
|
|
fieldBisReg,fieldB,fieldCisReg,fieldC);
|
|
|
|
state->_offset = 0;
|
|
|
|
state->_ea_present = 1;
|
|
|
|
if (fieldBisReg)
|
|
|
|
state->ea_reg1 = fieldB;
|
|
|
|
else
|
|
|
|
state->_offset += fieldB;
|
|
|
|
if (fieldCisReg)
|
|
|
|
state->ea_reg2 = fieldC;
|
|
|
|
else
|
|
|
|
state->_offset += fieldC;
|
|
|
|
state->_mem_load = 1;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
directMem = BIT (state->words[0], 5);
|
|
|
|
addrWriteBack = BIT (state->words[0], 3);
|
|
|
|
signExtend = BIT (state->words[0], 0);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
|
|
|
WRITE_FORMAT_x_COMMA_LB(A);
|
|
|
|
if (fieldBisReg || fieldB != 0)
|
|
|
|
WRITE_FORMAT_x_COMMA (B);
|
|
|
|
else
|
|
|
|
fieldB = fieldC;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
WRITE_FORMAT_x_RB (C);
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldA, fieldB, fieldC);
|
2001-01-11 22:20:20 +01:00
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_LD1:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* LD instruction. */
|
|
|
|
CHECK_FIELD_B ();
|
|
|
|
CHECK_FIELD_A ();
|
|
|
|
fieldC = FIELDD (state->words[0]);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
if (dbg)
|
|
|
|
printf ("6:b reg %d %d c 0x%x \n",
|
|
|
|
fieldBisReg, fieldB, fieldC);
|
|
|
|
state->_ea_present = 1;
|
|
|
|
state->_offset = fieldC;
|
|
|
|
state->_mem_load = 1;
|
|
|
|
if (fieldBisReg)
|
|
|
|
state->ea_reg1 = fieldB;
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Field B is either a shimm (same as fieldC) or limm (different!)
|
2001-01-11 22:20:20 +01:00
|
|
|
Say ea is not present, so only one of us will do the name lookup. */
|
|
|
|
else
|
|
|
|
state->_offset += fieldB, state->_ea_present = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
directMem = BIT (state->words[0],14);
|
|
|
|
addrWriteBack = BIT (state->words[0],12);
|
|
|
|
signExtend = BIT (state->words[0],9);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
write_instr_name ();
|
|
|
|
WRITE_FORMAT_x_COMMA_LB (A);
|
2001-08-21 10:51:12 +02:00
|
|
|
if (!fieldBisReg)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldB = state->_offset;
|
|
|
|
WRITE_FORMAT_x_RB (B);
|
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
WRITE_FORMAT_x (B);
|
2001-08-21 10:51:12 +02:00
|
|
|
if (fieldC != 0 && !BIT (state->words[0],13))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldCisReg = 0;
|
|
|
|
WRITE_FORMAT_COMMA_x_RB (C);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
WRITE_FORMAT_RB ();
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldA, fieldB, fieldC);
|
2001-01-11 22:20:20 +01:00
|
|
|
write_comments ();
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_ST:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* ST instruction. */
|
|
|
|
CHECK_FIELD_B();
|
|
|
|
CHECK_FIELD_C();
|
|
|
|
fieldA = FIELDD(state->words[0]); /* shimm */
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* [B,A offset] */
|
|
|
|
if (dbg) printf("7:b reg %d %x off %x\n",
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldBisReg,fieldB,fieldA);
|
2001-01-11 22:20:20 +01:00
|
|
|
state->_ea_present = 1;
|
|
|
|
state->_offset = fieldA;
|
|
|
|
if (fieldBisReg)
|
|
|
|
state->ea_reg1 = fieldB;
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Field B is either a shimm (same as fieldA) or limm (different!)
|
2001-01-11 22:20:20 +01:00
|
|
|
Say ea is not present, so only one of us will do the name lookup.
|
|
|
|
(for is_limm we do the name translation here). */
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
state->_offset += fieldB, state->_ea_present = 0;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
directMem = BIT (state->words[0], 26);
|
|
|
|
addrWriteBack = BIT (state->words[0], 24);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
write_instr_name ();
|
2001-01-11 22:20:20 +01:00
|
|
|
WRITE_FORMAT_x_COMMA_LB(C);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
|
|
|
if (!fieldBisReg)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldB = state->_offset;
|
2005-07-01 13:16:33 +02:00
|
|
|
WRITE_FORMAT_x_RB (B);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
else
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
2005-07-01 13:16:33 +02:00
|
|
|
WRITE_FORMAT_x (B);
|
2001-08-21 10:51:12 +02:00
|
|
|
if (fieldBisReg && fieldA != 0)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
fieldAisReg = 0;
|
|
|
|
WRITE_FORMAT_COMMA_x_RB(A);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
WRITE_FORMAT_RB();
|
|
|
|
}
|
2005-07-01 13:16:33 +02:00
|
|
|
arc_sprintf (state, state->operandBuffer, formatString,
|
2001-09-26 03:54:07 +02:00
|
|
|
fieldC, fieldB, fieldA);
|
2005-07-01 13:16:33 +02:00
|
|
|
write_comments2 (fieldA);
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2005-03-03 16:42:05 +01:00
|
|
|
|
|
|
|
case CLASS_A4_SR:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* SR instruction */
|
|
|
|
CHECK_FIELD_B();
|
|
|
|
CHECK_FIELD_C();
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
write_instr_name ();
|
2001-01-11 22:20:20 +01:00
|
|
|
WRITE_FORMAT_x_COMMA_LB(C);
|
|
|
|
/* Try to print B as an aux reg if it is not a core reg. */
|
|
|
|
usesAuxReg = 1;
|
2005-07-01 13:16:33 +02:00
|
|
|
WRITE_FORMAT_x (B);
|
|
|
|
WRITE_FORMAT_RB ();
|
|
|
|
arc_sprintf (state, state->operandBuffer, formatString, fieldC, fieldB);
|
|
|
|
write_comments ();
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_OP3_SUBOPC3F:
|
2005-07-01 13:16:33 +02:00
|
|
|
write_instr_name ();
|
2001-01-11 22:20:20 +01:00
|
|
|
state->operandBuffer[0] = '\0';
|
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-03-03 16:42:05 +01:00
|
|
|
case CLASS_A4_LR:
|
2001-01-11 22:20:20 +01:00
|
|
|
/* LR instruction */
|
2005-07-01 13:16:33 +02:00
|
|
|
CHECK_FIELD_A ();
|
|
|
|
CHECK_FIELD_B ();
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
write_instr_name ();
|
|
|
|
WRITE_FORMAT_x_COMMA_LB (A);
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Try to print B as an aux reg if it is not a core reg. */
|
|
|
|
usesAuxReg = 1;
|
2005-07-01 13:16:33 +02:00
|
|
|
WRITE_FORMAT_x (B);
|
|
|
|
WRITE_FORMAT_RB ();
|
|
|
|
arc_sprintf (state, state->operandBuffer, formatString, fieldA, fieldB);
|
|
|
|
write_comments ();
|
2001-01-11 22:20:20 +01:00
|
|
|
break;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
default:
|
|
|
|
mwerror (state, "Bad decoding class in ARC disassembler");
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
state->_cond = cond;
|
|
|
|
return state->instructionLen = offset;
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Returns the name the user specified core extension register. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
2005-07-01 13:16:33 +02:00
|
|
|
_coreRegName(void * arg ATTRIBUTE_UNUSED, int regval)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
return arcExtMap_coreRegName (regval);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Returns the name the user specified AUX extension register. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
|
|
|
_auxRegName(void *_this ATTRIBUTE_UNUSED, int regval)
|
|
|
|
{
|
2001-09-26 03:54:07 +02:00
|
|
|
return arcExtMap_auxRegName(regval);
|
2001-01-11 22:20:20 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Returns the name the user specified condition code name. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
|
|
|
_condCodeName(void *_this ATTRIBUTE_UNUSED, int regval)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-09-26 03:54:07 +02:00
|
|
|
return arcExtMap_condCodeName(regval);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Returns the name the user specified extension instruction. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
static const char *
|
|
|
|
_instName (void *_this ATTRIBUTE_UNUSED, int majop, int minop, int *flags)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-09-26 03:54:07 +02:00
|
|
|
return arcExtMap_instName(majop, minop, flags);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* Decode an instruction returning the size of the instruction
|
|
|
|
in bytes or zero if unrecognized. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
static int
|
2005-07-01 13:16:33 +02:00
|
|
|
decodeInstr (bfd_vma address, /* Address of this instruction. */
|
|
|
|
disassemble_info * info)
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
bfd_byte buffer[4];
|
2005-07-01 13:16:33 +02:00
|
|
|
struct arcDisState s; /* ARC Disassembler state. */
|
|
|
|
void *stream = info->stream; /* Output stream. */
|
2001-08-21 10:51:12 +02:00
|
|
|
fprintf_ftype func = info->fprintf_func;
|
2001-01-11 22:20:20 +01:00
|
|
|
int bytes;
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
memset (&s, 0, sizeof(struct arcDisState));
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
/* read first instruction */
|
|
|
|
status = (*info->read_memory_func) (address, buffer, 4, info);
|
|
|
|
if (status != 0)
|
|
|
|
{
|
|
|
|
(*info->memory_error_func) (status, address, info);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (info->endian == BFD_ENDIAN_LITTLE)
|
|
|
|
s.words[0] = bfd_getl32(buffer);
|
|
|
|
else
|
|
|
|
s.words[0] = bfd_getb32(buffer);
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Always read second word in case of limm. */
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* We ignore the result since last insn may not have a limm. */
|
2001-01-11 22:20:20 +01:00
|
|
|
status = (*info->read_memory_func) (address + 4, buffer, 4, info);
|
|
|
|
if (info->endian == BFD_ENDIAN_LITTLE)
|
|
|
|
s.words[1] = bfd_getl32(buffer);
|
|
|
|
else
|
|
|
|
s.words[1] = bfd_getb32(buffer);
|
|
|
|
|
|
|
|
s._this = &s;
|
|
|
|
s.coreRegName = _coreRegName;
|
|
|
|
s.auxRegName = _auxRegName;
|
|
|
|
s.condCodeName = _condCodeName;
|
|
|
|
s.instName = _instName;
|
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Disassemble. */
|
|
|
|
bytes = dsmOneArcInst (address, (void *)& s);
|
2001-01-11 22:20:20 +01:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
/* Display the disassembly instruction. */
|
Kaveh Ghazi's printf format attribute checking patch.
bfd:
* elf32-xtensa.c (vsprint_msg): Add format attribute. Fix
format bugs.
* vms.h (_bfd_vms_debug): Add format attribute.
(_bfd_vms_debug, _bfd_hexdump): Fix typos.
binutils:
* bucomm.h (report): Add format attribute.
* dlltool.c (inform): Likewise.
* dllwrap.c (display, inform, warn): Likewise.
* objdump.c (objdump_sprintf): Likewise.
* readelf.c (error, warn): Likewise. Fix format bugs.
gas:
* config/tc-tic30.c (debug): Add format attribute. Fix format
bugs.
include:
* dis-asm.h (fprintf_ftype): Add format attribute.
opcodes:
* arc-dis.c, arm-dis.c, cris-dis.c, crx-dis.c, d10v-dis.c,
d30v-dis.c, fr30-dis.c, h8300-dis.c, h8500-dis.c, i860-dis.c,
ia64-dis.c, ip2k-dis.c, m10200-dis.c, m10300-dis.c,
m88k-dis.c, mcore-dis.c, mips-dis.c, ms1-dis.c, or32-dis.c,
ppc-dis.c, sh64-dis.c, sparc-dis.c, tic4x-dis.c, tic80-dis.c,
v850-dis.c: Fix format bugs.
* ia64-gen.c (fail, warn): Add format attribute.
* or32-opc.c (debug): Likewise.
2005-07-07 21:27:52 +02:00
|
|
|
(*func) (stream, "%08lx ", s.words[0]);
|
2001-01-11 22:20:20 +01:00
|
|
|
(*func) (stream, " ");
|
|
|
|
(*func) (stream, "%-10s ", s.instrBuffer);
|
2001-08-21 10:51:12 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
if (__TRANSLATION_REQUIRED (s))
|
2001-01-11 22:20:20 +01:00
|
|
|
{
|
|
|
|
bfd_vma addr = s.addresses[s.operandBuffer[1] - '0'];
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
(*info->print_address_func) ((bfd_vma) addr, info);
|
|
|
|
(*func) (stream, "\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
(*func) (stream, "%s",s.operandBuffer);
|
2005-07-01 13:16:33 +02:00
|
|
|
|
2001-01-11 22:20:20 +01:00
|
|
|
return s.instructionLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the print_insn function to use.
|
|
|
|
Side effect: load (possibly empty) extension section */
|
|
|
|
|
|
|
|
disassembler_ftype
|
|
|
|
arc_get_disassembler (void *ptr)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-01-11 22:20:20 +01:00
|
|
|
if (ptr)
|
|
|
|
build_ARC_extmap (ptr);
|
|
|
|
return decodeInstr;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|