aboutsummaryrefslogtreecommitdiff
path: root/opcodes/mips-dis.c
diff options
context:
space:
mode:
authorChris Demetriou <cgd@google.com>2003-01-02 22:04:55 +0000
committerChris Demetriou <cgd@google.com>2003-01-02 22:04:55 +0000
commit440cc0bc1a3338bfbd5e098cb65483bc50c0bd57 (patch)
tree036fbd322e7fbff42fcd7aaab95f675e73186f42 /opcodes/mips-dis.c
parent64543e1acf3388a4318688720d3e242e93fcb00b (diff)
downloadfsf-binutils-gdb-440cc0bc1a3338bfbd5e098cb65483bc50c0bd57.zip
fsf-binutils-gdb-440cc0bc1a3338bfbd5e098cb65483bc50c0bd57.tar.gz
fsf-binutils-gdb-440cc0bc1a3338bfbd5e098cb65483bc50c0bd57.tar.bz2
2003-01-02 Chris Demetriou <cgd@broadcom.com>
* mips-dis.c (print_insn_args): Use position extracted by "+A" to calculate size for "+B". Redo code for "+C" so it shares the same style as "+A" and "+B" now do.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r--opcodes/mips-dis.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c
index cbf87ce..176ffeb 100644
--- a/opcodes/mips-dis.c
+++ b/opcodes/mips-dis.c
@@ -672,6 +672,9 @@ print_insn_args (d, l, pc, info)
struct disassemble_info *info;
{
int op, delta;
+ unsigned int lsb, msb, msbd;
+
+ lsb = 0;
for (; *d != '\0'; d++)
{
@@ -697,21 +700,18 @@ print_insn_args (d, l, pc, info)
return;
case 'A':
- (*info->fprintf_func) (info->stream, "0x%x",
- (l >> OP_SH_SHAMT) & OP_MASK_SHAMT);
+ lsb = (l >> OP_SH_SHAMT) & OP_MASK_SHAMT;
+ (*info->fprintf_func) (info->stream, "0x%x", lsb);
break;
case 'B':
- (*info->fprintf_func) (info->stream, "0x%x",
- (((l >> OP_SH_INSMSB) & OP_MASK_INSMSB)
- - ((l >> OP_SH_SHAMT) & OP_MASK_SHAMT)
- + 1));
+ msb = (l >> OP_SH_INSMSB) & OP_MASK_INSMSB;
+ (*info->fprintf_func) (info->stream, "0x%x", msb - lsb + 1);
break;
case 'C':
- (*info->fprintf_func) (info->stream, "0x%x",
- (((l >> OP_SH_EXTMSBD) & OP_MASK_EXTMSBD)
- + 1));
+ msbd = (l >> OP_SH_EXTMSBD) & OP_MASK_EXTMSBD;
+ (*info->fprintf_func) (info->stream, "0x%x", msbd + 1);
break;
case 'D':