From 116adc27470ed3682b6236e44e3b18838673036c Mon Sep 17 00:00:00 2001 From: Matthew Malcomson Date: Thu, 9 May 2019 10:29:17 +0100 Subject: [binutils][aarch64] New SVE_Zm3_11_INDEX operand. Introduce new operand SVE_Zm3_11_INDEX that indicates a register between z0-z7 stored in bits 18-16 and an index stored in bits 20-19:11. gas/ChangeLog: 2019-05-09 Matthew Malcomson * config/tc-aarch64.c (parse_operands): Handle new SVE_Zm3_11_INDEX operand. include/ChangeLog: 2019-05-09 Matthew Malcomson * opcode/aarch64.h (enum aarch64_opnd): New SVE_Zm3_11_INDEX operand. opcodes/ChangeLog: 2019-05-09 Matthew Malcomson * aarch64-asm-2.c: Regenerated. * aarch64-dis-2.c: Regenerated. * aarch64-opc-2.c: Regenerated. * aarch64-opc.c (operand_general_constraint_met_p): Constraint checking for SVE_Zm3_11_INDEX. (aarch64_print_operand): Add printing for SVE_Zm3_11_INDEX. (fields): Handle SVE_i3l and SVE_i3h2 fields. * aarch64-opc.h (enum aarch64_field_kind): New SVE_i3l and SVE_i3h2 fields. * aarch64-tbl.h (AARCH64_OPERANDS): Use new SVE_Zm3_11_INDEX operand. --- opcodes/aarch64-dis-2.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'opcodes/aarch64-dis-2.c') diff --git a/opcodes/aarch64-dis-2.c b/opcodes/aarch64-dis-2.c index dc372125132..0ab22b1f30f 100644 --- a/opcodes/aarch64-dis-2.c +++ b/opcodes/aarch64-dis-2.c @@ -20078,8 +20078,8 @@ aarch64_extract_operand (const aarch64_operand *self, case 189: case 190: case 191: - case 195: - case 198: + case 196: + case 199: return aarch64_ext_regno (self, info, code, inst, errors); case 9: return aarch64_ext_regrt_sysins (self, info, code, inst, errors); @@ -20095,7 +20095,7 @@ aarch64_extract_operand (const aarch64_operand *self, case 32: case 33: case 34: - case 201: + case 202: return aarch64_ext_reglane (self, info, code, inst, errors); case 35: return aarch64_ext_reglist (self, info, code, inst, errors); @@ -20140,7 +20140,7 @@ aarch64_extract_operand (const aarch64_operand *self, case 180: case 181: case 182: - case 200: + case 201: return aarch64_ext_imm (self, info, code, inst, errors); case 43: case 44: @@ -20286,11 +20286,12 @@ aarch64_extract_operand (const aarch64_operand *self, case 192: case 193: case 194: + case 195: return aarch64_ext_sve_quad_index (self, info, code, inst, errors); - case 196: - return aarch64_ext_sve_index (self, info, code, inst, errors); case 197: - case 199: + return aarch64_ext_sve_index (self, info, code, inst, errors); + case 198: + case 200: return aarch64_ext_sve_reglist (self, info, code, inst, errors); default: assert (0); abort (); } -- cgit v1.2.1