From 6cda13266f4d767456ccd5ee9f4c8539b463fc0e Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Fri, 27 Apr 2012 18:02:35 +0000 Subject: 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. --- opcodes/sparc-dis.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'opcodes/sparc-dis.c') 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. */ { -- cgit v1.1