diff options
author | David S. Miller <davem@redhat.com> | 2012-04-27 18:02:35 +0000 |
---|---|---|
committer | David S. Miller <davem@redhat.com> | 2012-04-27 18:02:35 +0000 |
commit | 6cda13266f4d767456ccd5ee9f4c8539b463fc0e (patch) | |
tree | 69e6d6b48d1d5b2a1f7b214b1ef7362ca973c5d9 /opcodes/sparc-dis.c | |
parent | ec668d69b9517c6344f8c659f2014197b780f2da (diff) | |
download | fsf-binutils-gdb-6cda13266f4d767456ccd5ee9f4c8539b463fc0e.zip fsf-binutils-gdb-6cda13266f4d767456ccd5ee9f4c8539b463fc0e.tar.gz fsf-binutils-gdb-6cda13266f4d767456ccd5ee9f4c8539b463fc0e.tar.bz2 |
Add support for SPARC T4 crypto instructions.
include/opcode/
* sparc.h: Document new arg code' )' for crypto RS3
immediates.
opcodes/
* sparc-dis.c (print_insn_sparc): Handle ')'.
* sparc-opc.c (sparc_opcodes): Add crypto instructions.
gas/
* config/tc-sparc.c (sparc_ip): Likewise. Accept instruction
names containing "_".
(sparc_arch_table): Add sparc4, v8pluse, and v9e. Add crypto
hwcap masks to v8plusv and v9v.
gas/testsuite/
* gas/sparc/crypto.s: New file.
* gas/sparc/crypto.d: New file.
* gas/sparc/sparc.exp: Run crypto test.
Diffstat (limited to 'opcodes/sparc-dis.c')
-rw-r--r-- | opcodes/sparc-dis.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/opcodes/sparc-dis.c b/opcodes/sparc-dis.c index 7857e4c..bda1b0d 100644 --- a/opcodes/sparc-dis.c +++ b/opcodes/sparc-dis.c @@ -704,6 +704,10 @@ print_insn_sparc (bfd_vma memaddr, disassemble_info *info) } break; + case ')': /* 5 bit unsigned immediate from RS3. */ + (info->fprintf_func) (stream, "%#x", X_RS3 (insn)); + break; + case 'X': /* 5 bit unsigned immediate. */ case 'Y': /* 6 bit unsigned immediate. */ { |