* hppa-dis.c (print_insn_hppa): Add cases for '.', '~'. '$'. and '!'

This commit is contained in:
Jeff Law 1999-08-28 06:45:18 +00:00
parent be3f1865fb
commit 46424e052b
2 changed files with 17 additions and 0 deletions

View File

@ -1,5 +1,7 @@
Sat Aug 28 00:27:24 1999 Jerry Quinn <jquinn@nortelnetworks.com>
* hppa-dis.c (print_insn_hppa): Add cases for '.', '~'. '$'. and '!'
* hppa-dis.c (print_insn_hppa): Look at next arg instead of bits
to decide to print a space.

View File

@ -614,10 +614,22 @@ print_insn_hppa (memaddr, info)
of address. */
fput_const (extract_17 (insn), info);
break;
case '.':
(*info->fprintf_func) (info->stream, "%d",
GET_FIELD (insn, 24, 25));
break;
case 'p':
(*info->fprintf_func) (info->stream, "%d",
31 - GET_FIELD (insn, 22, 26));
break;
case '~':
{
int num;
num = GET_FIELD (insn, 20, 20) << 5;
num |= GET_FIELD (insn, 22, 26);
(*info->fprintf_func) (info->stream, "%d", 63 - num);
break;
}
case 'P':
(*info->fprintf_func) (info->stream, "%d",
GET_FIELD (insn, 22, 26));
@ -626,6 +638,9 @@ print_insn_hppa (memaddr, info)
(*info->fprintf_func) (info->stream, "%d",
32 - GET_FIELD (insn, 27, 31));
break;
case '$':
fput_const (GET_FIELD (insn, 20, 28), info);
break;
case 'A':
fput_const (GET_FIELD (insn, 6, 18), info);
break;