start-sanitize-d10v

Tue Jul 23 11:02:53 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>

	* d10v-dis.c: Change all functions to use info->print_address_func.

end-sanitize-d10v
This commit is contained in:
Martin Hunt 1996-07-23 18:11:55 +00:00
parent bc8ea3f7ce
commit 687c3cc863
2 changed files with 70 additions and 50 deletions

View File

@ -1,3 +1,9 @@
start-sanitize-d10v
Tue Jul 23 11:02:53 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* d10v-dis.c: Change all functions to use info->print_address_func.
end-sanitize-d10v
Mon Jul 22 15:38:53 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> Mon Jul 22 15:38:53 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* m68k-opc.c (m68k_opcodes): Make opcode masks for the ColdFire * m68k-opc.c (m68k_opcodes): Make opcode masks for the ColdFire

View File

@ -21,8 +21,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "opcode/d10v.h" #include "opcode/d10v.h"
#include "dis-asm.h" #include "dis-asm.h"
static void dis_2_short PARAMS ((unsigned long insn, char *str, int order)); static void dis_2_short PARAMS ((unsigned long insn, bfd_vma memaddr,
static void dis_long PARAMS ((unsigned long insn, char *str)); struct disassemble_info *info, int order));
static void dis_long PARAMS ((unsigned long insn, bfd_vma memaddr,
struct disassemble_info *info));
int int
print_insn_d10v (memaddr, info) print_insn_d10v (memaddr, info)
@ -32,9 +34,6 @@ print_insn_d10v (memaddr, info)
int status; int status;
bfd_byte buffer[4]; bfd_byte buffer[4];
unsigned long insn; unsigned long insn;
char str[64];
strcpy (str, "unknown");
status = (*info->read_memory_func) (memaddr, buffer, 4, info); status = (*info->read_memory_func) (memaddr, buffer, 4, info);
if (status != 0) if (status != 0)
@ -47,54 +46,54 @@ print_insn_d10v (memaddr, info)
status = insn & FM11; status = insn & FM11;
switch (status) { switch (status) {
case 0: case 0:
dis_2_short (insn, str, 2); dis_2_short (insn, memaddr, info, 2);
break; break;
case FM01: case FM01:
dis_2_short (insn, str, 0); dis_2_short (insn, memaddr, info, 0);
break; break;
case FM10: case FM10:
dis_2_short (insn, str, 1); dis_2_short (insn, memaddr, info, 1);
break; break;
case FM11: case FM11:
dis_long (insn, str); dis_long (insn, memaddr, info);
break; break;
} }
(*info->fprintf_func) (info->stream, "\t%s", str, insn);
return 4; return 4;
} }
static void static void
print_operand (buf, oper, insn, op) print_operand (oper, insn, op, memaddr, info)
char *buf;
struct d10v_operand *oper; struct d10v_operand *oper;
unsigned long insn; unsigned long insn;
struct d10v_opcode *op; struct d10v_opcode *op;
bfd_vma memaddr;
struct disassemble_info *info;
{ {
int num, shift; int num, shift;
if (oper->flags == OPERAND_ATMINUS) if (oper->flags == OPERAND_ATMINUS)
{ {
strcpy (buf,"@-"); (*info->fprintf_func) (info->stream, "@-");
return; return;
} }
if (oper->flags == OPERAND_MINUS) if (oper->flags == OPERAND_MINUS)
{ {
strcpy (buf,"-"); (*info->fprintf_func) (info->stream, "-");
return; return;
} }
if (oper->flags == OPERAND_PLUS) if (oper->flags == OPERAND_PLUS)
{ {
strcpy (buf,"+"); (*info->fprintf_func) (info->stream, "+");
return; return;
} }
if (oper->flags == OPERAND_ATSIGN) if (oper->flags == OPERAND_ATSIGN)
{ {
strcpy (buf,"@"); (*info->fprintf_func) (info->stream, "@");
return; return;
} }
if (oper->flags == OPERAND_ATPAR) if (oper->flags == OPERAND_ATPAR)
{ {
strcpy (buf,"@("); (*info->fprintf_func) (info->stream, "@(");
return; return;
} }
@ -116,36 +115,56 @@ print_operand (buf, oper, insn, op)
if (num == pre_defined_registers[i].value) if (num == pre_defined_registers[i].value)
{ {
if (pre_defined_registers[i].pname) if (pre_defined_registers[i].pname)
strcpy(buf,pre_defined_registers[i].pname); (*info->fprintf_func) (info->stream, "%s",pre_defined_registers[i].pname);
else else
strcpy(buf,pre_defined_registers[i].name); (*info->fprintf_func) (info->stream, "%s",pre_defined_registers[i].name);
match=1; match=1;
break; break;
} }
} }
if (match==0) if (match==0)
{ {
/* this would only get executed if a register was not in the
register table */
if (oper->flags & OPERAND_ACC) if (oper->flags & OPERAND_ACC)
*buf++ = 'a'; (*info->fprintf_func) (info->stream, "a");
else if (oper->flags & OPERAND_CONTROL) else if (oper->flags & OPERAND_CONTROL)
{ (*info->fprintf_func) (info->stream, "cr");
*buf++ ='c';
*buf++ ='r';
}
else if(oper->flags & OPERAND_REG) else if(oper->flags & OPERAND_REG)
*buf++ = 'r'; (*info->fprintf_func) (info->stream, "r");
sprintf (buf, "%d", num); (*info->fprintf_func) (info->stream, "%d",num);
} }
} }
else else
sprintf (buf, "0x%x", num); {
/* 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 & (max-1);
neg = 1;
}
num = num<<2;
if (neg)
(*info->print_address_func) (memaddr - num, info);
else
(*info->print_address_func) (memaddr + num, info);
}
else
(*info->fprintf_func) (info->stream, "0x%x",num);
}
} }
static void static void
dis_long (insn, str) dis_long (insn, memaddr, info)
unsigned long insn; unsigned long insn;
char *str; bfd_vma memaddr;
struct disassemble_info *info;
{ {
int i; int i;
char buf[32]; char buf[32];
@ -157,32 +176,31 @@ dis_long (insn, str)
{ {
if ((op->format & LONG_OPCODE) && ((op->mask & insn) == op->opcode)) if ((op->format & LONG_OPCODE) && ((op->mask & insn) == op->opcode))
{ {
strcpy (str, op->name); (*info->fprintf_func) (info->stream, "%s\t", op->name);
strcat (str, "\t");
for ( i=0; op->operands[i]; i++) for ( i=0; op->operands[i]; i++)
{ {
oper = (struct d10v_operand *)&d10v_operands[op->operands[i]]; oper = (struct d10v_operand *)&d10v_operands[op->operands[i]];
if (oper->flags == OPERAND_ATPAR) if (oper->flags == OPERAND_ATPAR)
need_paren = 1; need_paren = 1;
print_operand (buf, oper, insn, op); print_operand (oper, insn, op, memaddr, info);
strcat (str, buf);
if (op->operands[i+1] && oper->bits && if (op->operands[i+1] && oper->bits &&
d10v_operands[op->operands[i+1]].flags != OPERAND_PLUS && d10v_operands[op->operands[i+1]].flags != OPERAND_PLUS &&
d10v_operands[op->operands[i+1]].flags != OPERAND_MINUS) d10v_operands[op->operands[i+1]].flags != OPERAND_MINUS)
strcat (str,", "); (*info->fprintf_func) (info->stream, ", ");
} }
break; break;
} }
op++; op++;
} }
if (need_paren) if (need_paren)
strcat (str, ")"); (*info->fprintf_func) (info->stream, ")");
} }
static void static void
dis_2_short (insn, str, order) dis_2_short (insn, memaddr, info, order)
unsigned long insn; unsigned long insn;
char *str; bfd_vma memaddr;
struct disassemble_info *info;
int order; int order;
{ {
int i,j; int i,j;
@ -197,8 +215,6 @@ dis_2_short (insn, str, order)
ins[0] = (insn & 0x3FFFFFFF) >> 15; ins[0] = (insn & 0x3FFFFFFF) >> 15;
ins[1] = insn & 0x00007FFF; ins[1] = insn & 0x00007FFF;
*str = 0;
for(j=0;j<2;j++) for(j=0;j<2;j++)
{ {
op = (struct d10v_opcode *)d10v_opcodes; op = (struct d10v_opcode *)d10v_opcodes;
@ -207,19 +223,17 @@ dis_2_short (insn, str, order)
{ {
if ((op->format & SHORT_OPCODE) && ((op->mask & ins[j]) == op->opcode)) if ((op->format & SHORT_OPCODE) && ((op->mask & ins[j]) == op->opcode))
{ {
strcat (str, op->name); (*info->fprintf_func) (info->stream, "%s\t",op->name);
strcat (str, "\t");
for (i=0; op->operands[i]; i++) for (i=0; op->operands[i]; i++)
{ {
oper = (struct d10v_operand *)&d10v_operands[op->operands[i]]; oper = (struct d10v_operand *)&d10v_operands[op->operands[i]];
if (oper->flags == OPERAND_ATPAR) if (oper->flags == OPERAND_ATPAR)
need_paren = 1; need_paren = 1;
print_operand (buf, oper, ins[j], op); print_operand (oper, ins[j], op, memaddr, info);
strcat (str, buf);
if (op->operands[i+1] && oper->bits && if (op->operands[i+1] && oper->bits &&
d10v_operands[op->operands[i+1]].flags != OPERAND_PLUS && d10v_operands[op->operands[i+1]].flags != OPERAND_PLUS &&
d10v_operands[op->operands[i+1]].flags != OPERAND_MINUS) d10v_operands[op->operands[i+1]].flags != OPERAND_MINUS)
strcat( str,", "); (*info->fprintf_func) (info->stream, ", ");
} }
match = 1; match = 1;
num_match++; num_match++;
@ -228,20 +242,20 @@ dis_2_short (insn, str, order)
op++; op++;
} }
if (!match) if (!match)
strcat (str, "unknown"); (*info->fprintf_func) (info->stream, "unknown");
switch (order) switch (order)
{ {
case 0: case 0:
strcat ( str, "\t->\t"); (*info->fprintf_func) (info->stream, "\t->\t");
order = -1; order = -1;
break; break;
case 1: case 1:
strcat (str, "\t<-\t"); (*info->fprintf_func) (info->stream, "\t<-\t");
order = -1; order = -1;
break; break;
case 2: case 2:
strcat (str, "\t||\t"); (*info->fprintf_func) (info->stream, "\t||\t");
order = -1; order = -1;
break; break;
default: default:
@ -250,8 +264,8 @@ dis_2_short (insn, str, order)
} }
if (num_match == 0) if (num_match == 0)
sprintf (str, ".long\t0x%08x", insn); (*info->fprintf_func) (info->stream, ".long\t0x%08x",insn);
if (need_paren) if (need_paren)
strcat (str, ")"); (*info->fprintf_func) (info->stream, ")");
} }