diff options
author | Jeff Law <law@redhat.com> | 1999-09-19 19:52:39 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-19 19:52:39 +0000 |
commit | f322c2c2c130729a78718df174aa6f028d96c982 (patch) | |
tree | 8b234524af4073db5a6f2c3be289f6b4ddba97c4 /opcodes | |
parent | 71823da428aa35e33eaedb4e298a98f01f4d8387 (diff) | |
download | gdb-f322c2c2c130729a78718df174aa6f028d96c982.zip gdb-f322c2c2c130729a78718df174aa6f028d96c982.tar.gz gdb-f322c2c2c130729a78718df174aa6f028d96c982.tar.bz2 |
* hppa-dis.c (print_insn_hppa): Handle 'fe' and 'cJ'.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 2 | ||||
-rw-r--r-- | opcodes/hppa-dis.c | 13 |
2 files changed, 15 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 7e3d350..2d9365e 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,7 @@ Sun Sep 19 10:41:27 1999 Jeffrey A Law (law@cygnus.com) + * hppa-dis.c (print_insn_hppa): Handle 'fe' and 'cJ'. + * hppa-dis.c (print_insn_hppa): Handle '#', 'd', and 'cq'. * hppa-dis.c (print_insn_hppa): Handle 'm', 'h', '='. diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 6e8df74..85ae1a2 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -463,6 +463,13 @@ print_insn_hppa (memaddr, info) fput_fp_reg (reg, info); break; } + case 'e': + if (GET_FIELD (insn, 25, 25)) + fput_fp_reg_r (GET_FIELD (insn, 11, 15), info); + else + fput_fp_reg (GET_FIELD (insn, 11, 15), info); + break; + } break; @@ -496,6 +503,12 @@ print_insn_hppa (memaddr, info) short_ldst_compl_names[(GET_FIELD (insn, 28, 28) | GET_FIELD (insn, 29, 29))]); break; + case 'J': + if (insn & 0x4) + (*info->fprintf_func) (info->stream, ",mb "); + else + (*info->fprintf_func) (info->stream, ",ma "); + break; case 's': (*info->fprintf_func) (info->stream, "%s ", short_bytes_compl_names[GET_COMPL (insn)]); |