diff options
author | Alan Modra <amodra@gmail.com> | 2005-05-19 07:00:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-05-19 07:00:40 +0000 |
commit | 1ed8e1e4fb4ea5e9930be7ad5ccabd23bb6beccf (patch) | |
tree | 9abb51060d936c3634b879e7466730f8484a1a91 /opcodes/ppc-dis.c | |
parent | f4411256d5b5d60fe7425303b47aedeefd198160 (diff) | |
download | gdb-1ed8e1e4fb4ea5e9930be7ad5ccabd23bb6beccf.zip gdb-1ed8e1e4fb4ea5e9930be7ad5ccabd23bb6beccf.tar.gz gdb-1ed8e1e4fb4ea5e9930be7ad5ccabd23bb6beccf.tar.bz2 |
* ppc-dis.c (powerpc_dialect): Handle "-Mpower5".
(print_ppc_disassembler_options): Document it.
* ppc-opc.c (SCV_LEV): Define.
(LEV): Allow optional operand.
(POWER5): Define.
(powerpc_opcodes): Extend "sc". Adjust "svc" and "svcl". Add
"hrfid", "popcntb", "fsqrtes", "fsqrtes.", "fre" and "fre.".
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index b2eb427..7876f75 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -72,6 +72,10 @@ powerpc_dialect (struct disassemble_info *info) dialect |= PPC_OPCODE_POWER4; if (info->disassembler_options + && strstr (info->disassembler_options, "power5") != NULL) + dialect |= PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5; + + if (info->disassembler_options && strstr (info->disassembler_options, "any") != NULL) dialect |= PPC_OPCODE_ANY; @@ -302,6 +306,7 @@ the -M switch:\n"); fprintf (stream, " e500|e500x2 Disassemble the e500 instructions\n"); fprintf (stream, " efs Disassemble the EFS instructions\n"); fprintf (stream, " power4 Disassemble the Power4 instructions\n"); + fprintf (stream, " power5 Disassemble the Power5 instructions\n"); fprintf (stream, " 32 Do not disassemble 64-bit instructions\n"); fprintf (stream, " 64 Allow disassembly of 64-bit instructions\n"); } |