]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
x86: simplify / consolidate check_{word,long,qword}_reg()
authorJan Beulich <jbeulich@suse.com>
Fri, 24 May 2024 09:51:21 +0000 (11:51 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 24 May 2024 09:51:21 +0000 (11:51 +0200)
These run after template matching. Therefore operands are already known
to match the template in use. With the loop bodies skipping anything not
a GPR in the actual operands, there's therefore no need to check the
template's operand type for permitting Reg or Accum.

At the same time bring the three functions in sync for the "byte" part
of the logic, as far as checking the template for other sizes (qword
specifically) goes. Plus drop a stale comment from check_qword_reg(),
when all three are now behaving the same in this regard.

gas/config/tc-i386.c

index 1e580b9f6db2e9dae1eb2b6490357506080b4dd8..69b2670bbbb7719bdf50c6235f6b1cec859ae8f9 100644 (file)
@@ -9867,10 +9867,9 @@ check_long_reg (void)
     /* Reject eight bit registers, except where the template requires
        them. (eg. movzb)  */
     else if (i.types[op].bitfield.byte
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && (i.tm.operand_types[op].bitfield.word
-                || i.tm.operand_types[op].bitfield.dword))
+                || i.tm.operand_types[op].bitfield.dword
+                || i.tm.operand_types[op].bitfield.qword))
       {
        as_bad (_("`%s%s' not allowed with `%s%c'"),
                register_prefix,
@@ -9883,8 +9882,6 @@ check_long_reg (void)
        prefix on a general reg is present.  */
     else if ((i.types[op].bitfield.word
              || i.types[op].bitfield.qword)
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && i.tm.operand_types[op].bitfield.dword)
       {
        as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
@@ -9907,8 +9904,6 @@ check_qword_reg (void)
     /* Reject eight bit registers, except where the template requires
        them. (eg. movzb)  */
     else if (i.types[op].bitfield.byte
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && (i.tm.operand_types[op].bitfield.word
                 || i.tm.operand_types[op].bitfield.dword
                 || i.tm.operand_types[op].bitfield.qword))
@@ -9923,12 +9918,8 @@ check_qword_reg (void)
     /* Error if the r prefix on a general reg is missing.  */
     else if ((i.types[op].bitfield.word
              || i.types[op].bitfield.dword)
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && i.tm.operand_types[op].bitfield.qword)
       {
-       /* Prohibit these changes in the 64bit mode, since the
-          lowering is more complicated.  */
        as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
                register_prefix, i.op[op].regs->reg_name, i.suffix);
        return 0;
@@ -9947,10 +9938,9 @@ check_word_reg (void)
     /* Reject eight bit registers, except where the template requires
        them. (eg. movzb)  */
     else if (i.types[op].bitfield.byte
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && (i.tm.operand_types[op].bitfield.word
-                || i.tm.operand_types[op].bitfield.dword))
+                || i.tm.operand_types[op].bitfield.dword
+                || i.tm.operand_types[op].bitfield.qword))
       {
        as_bad (_("`%s%s' not allowed with `%s%c'"),
                register_prefix,
@@ -9962,8 +9952,6 @@ check_word_reg (void)
     /* Error if the e or r prefix on a general reg is present.  */
     else if ((i.types[op].bitfield.dword
                 || i.types[op].bitfield.qword)
-            && (i.tm.operand_types[op].bitfield.class == Reg
-                || i.tm.operand_types[op].bitfield.instance == Accum)
             && i.tm.operand_types[op].bitfield.word)
       {
        as_bad (_("incorrect register `%s%s' used with `%c' suffix"),