diff options
author | Jeff Law <law@redhat.com> | 1999-09-19 17:39:17 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-19 17:39:17 +0000 |
commit | 8235801e5589511a966e3de1557a06451b1f11a4 (patch) | |
tree | 81a73f9e0cf939ec08771673fcf4e2b9edd5554b /include/opcode/hppa.h | |
parent | 629d9417e180a7aa2bf3e4ff6102c4ccdc46564d (diff) | |
download | gdb-8235801e5589511a966e3de1557a06451b1f11a4.zip gdb-8235801e5589511a966e3de1557a06451b1f11a4.tar.gz gdb-8235801e5589511a966e3de1557a06451b1f11a4.tar.bz2 |
* hppa.h (pa_opcodes): Handle PA2.0 "bve" instructions.
Diffstat (limited to 'include/opcode/hppa.h')
-rw-r--r-- | include/opcode/hppa.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/opcode/hppa.h b/include/opcode/hppa.h index c4c2ed0..21cf0a1 100644 --- a/include/opcode/hppa.h +++ b/include/opcode/hppa.h @@ -71,7 +71,7 @@ struct pa_opcode In the args field, the following characters are unused: ' "# & - / 34 6789:;< > @' - ' BC JK XY [\] ' + ' C JK XY [\] ' ' de h m y { } ' Here are all the characters: @@ -145,6 +145,7 @@ Also these: l ,l completer for new syntax branch M ,push completer for new syntax branch L ,%r2 completer for new syntax branch + B ,pop completer for new syntax branch Completer operands all have 'c' as the prefix: @@ -369,6 +370,10 @@ static const struct pa_opcode pa_opcodes[] = { "blr", 0xe8004000, 0xfc00e001, "nx,b", pa10}, { "bv", 0xe800c000, 0xfc00fffd, "nx(b)", pa10}, { "bv", 0xe800c000, 0xfc00fffd, "n(b)", pa10}, +{ "bve", 0xe800f000, 0xfc00fffe, "ln(b)L", pa20, FLAG_STRICT}, +{ "bve", 0xe800f001, 0xfc00fffe, "lMn(b)L", pa20, FLAG_STRICT}, +{ "bve", 0xe800f001, 0xfc00fffe, "Bn(b)", pa20, FLAG_STRICT}, +{ "bve", 0xe800d000, 0xfc00fffe, "n(b)", pa20, FLAG_STRICT}, { "be", 0xe4000000, 0xfc000000, "lnz(S,b)", pa10, FLAG_STRICT}, { "be", 0xe0000000, 0xfc000000, "nz(S,b)", pa10, FLAG_STRICT}, { "be", 0xe0000000, 0xfc000000, "nz(S,b)", pa10}, |