i386: Check invalid (%dx) usage
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 4 Nov 2022 20:47:59 +0000 (13:47 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 10 Nov 2022 18:11:25 +0000 (10:11 -0800)
(%dx) isn't a valid memory address in any modes.  It is used as a special
memory operand for input/output port address in AT&T syntax and should
only be used with input/output instructions.  Update i386_att_operand to
set i.input_output_operand to true for (%dx) and issue an error if (%dx)
is used with non-input/output instructions.

PR gas/29751
* config/tc-i386.c (_i386_insn): Add input_output_operand.
(md_assemble): Issue an error if input/output memory operand is
used with non-input/output instructions.
(i386_att_operand): Set i.input_output_operand to true for
(%dx).
* testsuite/gas/i386/inval.l: Updated.
* testsuite/gas/i386/x86-64-inval.l: Likewise.
* testsuite/gas/i386/inval.s: Add tests for invalid (%dx) usage.
* testsuite/gas/i386/x86-64-inval.s: Likewise.

gas/config/tc-i386.c
gas/testsuite/gas/i386/inval.l
gas/testsuite/gas/i386/inval.s
gas/testsuite/gas/i386/x86-64-inval.l
gas/testsuite/gas/i386/x86-64-inval.s

index da005c5d61d1210a84757cfb475c560b141f3080..142b937423eb166e25c03c01c4b8dd68a30d2b8f 100644 (file)
@@ -311,6 +311,10 @@ struct _i386_insn
     /* The operand to a branch insn indicates an absolute branch.  */
     bool jumpabsolute;
 
+    /* There is a memory operand of (%dx) which should be only used
+       with input/output instructions.  */
+    bool input_output_operand;
+
     /* Extended states.  */
     enum
       {
@@ -5045,6 +5049,17 @@ md_assemble (char *line)
       i.disp_operands = 0;
     }
 
+  /* The memory operand of (%dx) should be only used with input/output
+     instructions (base opcodes: 0x6c, 0x6e, 0xec, 0xee).  */
+  if (i.input_output_operand
+      && ((i.tm.base_opcode | 0x82) != 0xee
+         || i.tm.opcode_modifier.opcodespace != SPACE_BASE))
+    {
+      as_bad (_("input/output port address isn't allowed with `%s'"),
+             i.tm.name);
+      return;
+    }
+
   if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
     optimize_encoding ();
 
@@ -11752,6 +11767,7 @@ i386_att_operand (char *operand_string)
          && !operand_type_check (i.types[this_operand], disp))
        {
          i.types[this_operand] = i.base_reg->reg_type;
+         i.input_output_operand = true;
          return 1;
        }
 
index 5d520f0e8e7564a429d3dfba82c671642a02a6fe..f66142ab171cac8904f8a809da9d5f2a39571db2 100644 (file)
 .*:115: Error: .*
 .*:116: Error: .*
 .*:117: Error: .*
+.*:119: Error: .*
+.*:120: Error: .*
+.*:121: Error: .*
+.*:122: Error: .*
 [      ]*1[    ]+\.text
 [      ]*2[    ]+\.allow_index_reg
 [      ]*3[    ]+\# All the following should be illegal
 [      ]*[1-9][0-9]*[  ]+inb   %dx, %ax
 [      ]*[1-9][0-9]*[  ]+outb  %ax, %dx
 [      ]*[1-9][0-9]*[  ]+movb  %ax, %bx
+[      ]*[1-9][0-9]*[  ]+
+[      ]*[1-9][0-9]*[  ]+incl  \(%dx\)
+[      ]*[1-9][0-9]*[  ]+incw  \(%dx\)
+[      ]*[1-9][0-9]*[  ]+mov   \(%dx\), %ax
+[      ]*[1-9][0-9]*[  ]+mov   %ax, \(%dx\)
 #pass
index 4e9f751c61f1539396e77c1d840d16be56d0688c..4e9a90de9040da81367a429cdb9ac3f826fd0f23 100644 (file)
@@ -115,3 +115,8 @@ movnti word ptr [eax], ax
        inb     %dx, %ax
        outb    %ax, %dx
        movb    %ax, %bx
+
+       incl    (%dx)
+       incw    (%dx)
+       mov     (%dx), %ax
+       mov     %ax, (%dx)
index bbb8ba295cbdfc5fbc46337164493e6a3a0f5bb0..14b267421c4cba5a91b428e06b9762849930a975 100644 (file)
 .*:117: Error: .*
 .*:118: Error: .*
 .*:121: Error: .*
+.*:123: Error: .*
+.*:124: Error: .*
+.*:125: Error: .*
+.*:126: Error: .*
 GAS LISTING .*
 
 
@@ -241,3 +245,8 @@ GAS LISTING .*
 [      ]*[1-9][0-9]*[  ]+
 [      ]*[1-9][0-9]*[  ]+\.att_syntax prefix
 [      ]*[1-9][0-9]*[  ]+movsd \(%rsi\), %ss:\(%rdi\), %ss:\(%rax\)
+[      ]*[1-9][0-9]*[  ]+
+[      ]*[1-9][0-9]*[  ]+incl  \(%dx\)
+[      ]*[1-9][0-9]*[  ]+incw  \(%dx\)
+[      ]*[1-9][0-9]*[  ]+mov   \(%dx\), %ax
+[      ]*[1-9][0-9]*[  ]+mov   %ax, \(%dx\)
index 85c3582d4b2501805b5cdb4545ec72a1a151515b..7705ef1cccbf312dcff263c7d6ad6fe161f19d37 100644 (file)
@@ -119,3 +119,8 @@ movnti word ptr [rax], ax
 
        .att_syntax prefix
        movsd (%rsi), %ss:(%rdi), %ss:(%rax)
+
+       incl    (%dx)
+       incw    (%dx)
+       mov     (%dx), %ax
+       mov     %ax, (%dx)