x86: Simplify check for distinct TMM register operands
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 28 Jul 2021 17:42:47 +0000 (10:42 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 28 Jul 2021 17:42:47 +0000 (10:42 -0700)
If any pair of operands in AMX instructions with 3 TMM register operands
are the same, the instruction will UD.  Don't call register_number to
check for distinct TMM register operands since all TMM register operands
have the same size.

* config/tc-i386.c (check_VecOperands): Remove register_number
call when checking for distinct TMM register operands.

gas/config/tc-i386.c

index d98c6c4e94931c82afd1f8cece5cc1470f01041e..1235c3e7733fc50a4428adad4404a18622b20754 100644 (file)
@@ -6076,21 +6076,16 @@ check_VecOperands (const insn_template *t)
        }
     }
 
-  /* For AMX instructions with three tmmword operands, all tmmword operand must be
-     distinct */
-  if (t->operand_types[0].bitfield.tmmword
-      && i.reg_operands == 3)
-    {
-      if (register_number (i.op[0].regs)
-          == register_number (i.op[1].regs)
-          || register_number (i.op[0].regs)
-             == register_number (i.op[2].regs)
-          || register_number (i.op[1].regs)
-             == register_number (i.op[2].regs))
-       {
-         i.error = invalid_tmm_register_set;
-         return 1;
-       }
+  /* For AMX instructions with 3 TMM register operands, all operands
+      must be distinct.  */
+  if (i.reg_operands == 3
+      && t->operand_types[0].bitfield.tmmword
+      && (i.op[0].regs == i.op[1].regs
+          || i.op[0].regs == i.op[2].regs
+          || i.op[1].regs == i.op[2].regs))
+    {
+      i.error = invalid_tmm_register_set;
+      return 1;
     }
 
   /* Check if broadcast is supported by the instruction and is applied