]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
x86emul: correct far branch handling for 64-bit mode
authorJan Beulich <jbeulich@suse.com>
Mon, 16 Dec 2019 16:37:09 +0000 (17:37 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 16 Dec 2019 16:37:09 +0000 (17:37 +0100)
AMD and friends explicitly specify that 64-bit operands aren't possible
for these insns. Nevertheless REX.W isn't fully ignored: It still
cancels a possible operand size override (0x66). Intel otoh explicitly
provides for 64-bit operands on the respective insn page of the SDM.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/x86_emulate/x86_emulate.c

index 742280de23945e75314e4e77493881dd0bd47216..5503844c4ad19ee95a2d44ff05d474b50b926643 100644 (file)
@@ -2519,9 +2519,16 @@ x86_decode_onebyte(
         case 6: /* push */
             if ( mode_64bit() && op_bytes == 4 )
                 op_bytes = 8;
-            /* fall through */
+            state->desc = DstNone | SrcMem | Mov;
+            break;
+
         case 3: /* call (far, absolute indirect) */
         case 5: /* jmp (far, absolute indirect) */
+            /* REX.W ignored on a vendor-dependent basis. */
+            if ( op_bytes == 8 &&
+                 (ctxt->cpuid->x86_vendor &
+                  (X86_VENDOR_AMD | X86_VENDOR_HYGON)) )
+                op_bytes = 4;
             state->desc = DstNone | SrcMem | Mov;
             break;
         }