+2020-07-14 Jan Beulich <jbeulich@suse.com>
+
+ * testsuite/gas/i386/x86-64-pseudos.s: Add empty-REX tests for
+ ModR/M-encoded byte register cases.
+ * testsuite/gas/i386/x86-64-pseudos.d,
+ testsuite/gas/i386/x86-64-reg-intel.d,
+ testsuite/gas/i386/x86-64-reg.d: Adjust expectations.
+
2020-07-14 Jan Beulich <jbeulich@suse.com>
* testsuite/gas/i386/x86-64-pseudos.s: Add empty-REX tests for
+[a-f0-9]+: 88 c4 mov %al,%ah
+[a-f0-9]+: 40 d3 e0 rex shl %cl,%eax
+[a-f0-9]+: 40 a0 01 00 00 00 00 00 00 00 rex movabs 0x1,%al
+ +[a-f0-9]+: 40 38 ca rex cmp %cl,%dl
+ +[a-f0-9]+: 40 b3 01 rex mov \$(0x)?1,%bl
+ +[a-f0-9]+: f2 40 0f 38 f0 c1 rex crc32b? %cl,%eax
+[a-f0-9]+: 40 89 c3 rex mov %eax,%ebx
+[a-f0-9]+: 41 89 c6 mov %eax,%r14d
+[a-f0-9]+: 41 89 00 mov %eax,\(%r8\)
{rex} mov %al,%ah
{rex} shl %cl, %eax
{rex} movabs 1, %al
+ {rex} cmp %cl, %dl
+ {rex} mov $1, %bl
+ {rex} crc32 %cl, %eax
{rex} movl %eax,%ebx
{rex} movl %eax,%r14d
{rex} movl %eax,(%r8)
[ ]*[a-f0-9]+: 0f 73 f6 02 psllq mm6,0x2
[ ]*[a-f0-9]+: 66 41 0f 73 f2 02 psllq xmm10,0x2
[ ]*[a-f0-9]+: 66 41 0f 73 fa 02 pslldq xmm10,0x2
-[ ]*[a-f0-9]+: 40 80 c0 01[ ]+add al,0x1
-[ ]*[a-f0-9]+: 40 80 c1 01[ ]+add cl,0x1
-[ ]*[a-f0-9]+: 40 80 c2 01[ ]+add dl,0x1
-[ ]*[a-f0-9]+: 40 80 c3 01[ ]+add bl,0x1
+[ ]*[a-f0-9]+: 40 80 c0 01[ ]+rex add al,0x1
+[ ]*[a-f0-9]+: 40 80 c1 01[ ]+rex add cl,0x1
+[ ]*[a-f0-9]+: 40 80 c2 01[ ]+rex add dl,0x1
+[ ]*[a-f0-9]+: 40 80 c3 01[ ]+rex add bl,0x1
[ ]*[a-f0-9]+: 40 80 c4 01[ ]+add spl,0x1
[ ]*[a-f0-9]+: 40 80 c5 01[ ]+add bpl,0x1
[ ]*[a-f0-9]+: 40 80 c6 01[ ]+add sil,0x1
[ ]*[a-f0-9]+: 0f 73 f6 02 psllq \$0x2,%mm6
[ ]*[a-f0-9]+: 66 41 0f 73 f2 02 psllq \$0x2,%xmm10
[ ]*[a-f0-9]+: 66 41 0f 73 fa 02 pslldq \$0x2,%xmm10
-[ ]*[a-f0-9]+: 40 80 c0 01[ ]+add \$0x1,%al
-[ ]*[a-f0-9]+: 40 80 c1 01[ ]+add \$0x1,%cl
-[ ]*[a-f0-9]+: 40 80 c2 01[ ]+add \$0x1,%dl
-[ ]*[a-f0-9]+: 40 80 c3 01[ ]+add \$0x1,%bl
+[ ]*[a-f0-9]+: 40 80 c0 01[ ]+rex add \$0x1,%al
+[ ]*[a-f0-9]+: 40 80 c1 01[ ]+rex add \$0x1,%cl
+[ ]*[a-f0-9]+: 40 80 c2 01[ ]+rex add \$0x1,%dl
+[ ]*[a-f0-9]+: 40 80 c3 01[ ]+rex add \$0x1,%bl
[ ]*[a-f0-9]+: 40 80 c4 01[ ]+add \$0x1,%spl
[ ]*[a-f0-9]+: 40 80 c5 01[ ]+add \$0x1,%bpl
[ ]*[a-f0-9]+: 40 80 c6 01[ ]+add \$0x1,%sil
+2020-07-14 Jan Beulich <jbeulich@suse.com>
+
+ * i386-dis.c (OP_E_register, OP_G, OP_REG, CRC32_Fixup):
+ Conditionalize invocations of "USED_REX (0)".
+
2020-07-14 Jan Beulich <jbeulich@suse.com>
* i386-dis.c (eBX, eCX, eDX, eSP, eBP, eSI, eDI, DL, BL, AH,
{
case b_mode:
case b_swap_mode:
- USED_REX (0);
+ if (reg & 4)
+ USED_REX (0);
if (rex)
names = names8rex;
else
switch (bytemode)
{
case b_mode:
- USED_REX (0);
+ if (modrm.reg & 4)
+ USED_REX (0);
if (rex)
oappend (names8rex[modrm.reg + add]);
else
case sp_reg: case bp_reg: case si_reg: case di_reg:
s = names16[code - ax_reg + add];
break;
- case al_reg: case ah_reg: case cl_reg: case ch_reg:
- case dl_reg: case dh_reg: case bl_reg: case bh_reg:
+ case ah_reg: case ch_reg: case dh_reg: case bh_reg:
USED_REX (0);
+ /* Fall through. */
+ case al_reg: case cl_reg: case dl_reg: case bl_reg:
if (rex)
s = names8rex[code - al_reg + add];
else
add = (rex & REX_B) ? 8 : 0;
if (bytemode == b_mode)
{
- USED_REX (0);
+ if (modrm.rm & 4)
+ USED_REX (0);
if (rex)
oappend (names8rex[modrm.rm + add]);
else