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
the Free Software Foundation; either version 3, or (at your option)
any later version.
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
if (oper->flags & OPERAND_REG)
{
int i;
int match = 0;
num += (oper->flags
& (OPERAND_GPR | OPERAND_FFLAG | OPERAND_CFLAG | OPERAND_CONTROL));
if (oper->flags & (OPERAND_ACC0 | OPERAND_ACC1))
num += num ? OPERAND_ACC1 : OPERAND_ACC0;
for (i = 0; i < d10v_reg_name_cnt (); i++)
{
if (num == (d10v_predefined_registers[i].value & ~ OPERAND_SP))
{
if (d10v_predefined_registers[i].pname)
(*info->fprintf_func) (info->stream, "%s",
d10v_predefined_registers[i].pname);
else
(*info->fprintf_func) (info->stream, "%s",
d10v_predefined_registers[i].name);
match = 1;
break;
}
}
if (match == 0)
{
/* This would only get executed if a register was not in the
register table. */
if (oper->flags & (OPERAND_ACC0 | OPERAND_ACC1))
(*info->fprintf_func) (info->stream, "a");
else if (oper->flags & OPERAND_CONTROL)
(*info->fprintf_func) (info->stream, "cr");
else if (oper->flags & OPERAND_REG)
(*info->fprintf_func) (info->stream, "r");
(*info->fprintf_func) (info->stream, "%d", num & REGISTER_MASK);
}
}
else
{
/* Addresses are right-shifted by 2. */
if (oper->flags & OPERAND_ADDR)
{
long max;
int neg = 0;
max = (1 << (oper->bits - 1));
if (num & max)
{
num = -num & ((1 << oper->bits) - 1);
neg = 1;
}
num = num << 2;
if (info->flags & INSN_HAS_RELOC)
(*info->print_address_func) (num & PC_MASK, info);
else
{
if (neg)
(*info->print_address_func) ((memaddr - num) & PC_MASK, info);
else
(*info->print_address_func) ((memaddr + num) & PC_MASK, info);
}
}
else
{
if (oper->flags & OPERAND_SIGNED)
{
int max = (1 << (oper->bits - 1));
if (num & max)
{
num = -num & ((1 << oper->bits) - 1);
(*info->fprintf_func) (info->stream, "-");
}
}
(*info->fprintf_func) (info->stream, "0x%x", num);
}
}
}
static void
dis_long (unsigned long insn,
bfd_vma memaddr,
struct disassemble_info *info)
{
int i;
struct d10v_opcode *op = (struct d10v_opcode *) d10v_opcodes;
struct d10v_operand *oper;
int need_paren = 0;
int match = 0;
while (op->name)
{
if ((op->format & LONG_OPCODE)
&& ((op->mask & insn) == (unsigned long) op->opcode))
{
match = 1;
(*info->fprintf_func) (info->stream, "%s\t", op->name);
if (!match)
(*info->fprintf_func) (info->stream, ".long\t0x%08lx", insn);
if (need_paren)
(*info->fprintf_func) (info->stream, ")");
}
static void
dis_2_short (unsigned long insn,
bfd_vma memaddr,
struct disassemble_info *info,
int order)
{
int i, j;
unsigned int ins[2];
struct d10v_opcode *op;
int match, num_match = 0;
struct d10v_operand *oper;
int need_paren = 0;