[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86emul: drop CASE_SIMD_DOUBLE_FP()
commit 053118f7accfbe5b28e5a85d6d2948d754a7d338 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Mon Dec 23 14:15:17 2019 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Mon Dec 23 14:15:17 2019 +0100 x86emul: drop CASE_SIMD_DOUBLE_FP() It's used only by CASE_SIMD_ALL_FP(), which can equally well be implemented in terms of CASE_SIMD_{PACKED,SCALAR}_FP(). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/x86_emulate/x86_emulate.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index c45660adf9..63180f9452 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -6010,21 +6010,18 @@ x86_emulate( CASE_SIMD_PACKED_INT(pfx, opc): \ case X86EMUL_OPC_VEX_66(pfx, opc) -#define CASE_SIMD_SINGLE_FP(kind, pfx, opc) \ - case X86EMUL_OPC##kind(pfx, opc): \ - case X86EMUL_OPC##kind##_F3(pfx, opc) -#define CASE_SIMD_DOUBLE_FP(kind, pfx, opc) \ - case X86EMUL_OPC##kind##_66(pfx, opc): \ - case X86EMUL_OPC##kind##_F2(pfx, opc) #define CASE_SIMD_ALL_FP(kind, pfx, opc) \ - CASE_SIMD_SINGLE_FP(kind, pfx, opc): \ - CASE_SIMD_DOUBLE_FP(kind, pfx, opc) + CASE_SIMD_PACKED_FP(kind, pfx, opc): \ + CASE_SIMD_SCALAR_FP(kind, pfx, opc) #define CASE_SIMD_PACKED_FP(kind, pfx, opc) \ case X86EMUL_OPC##kind(pfx, opc): \ case X86EMUL_OPC##kind##_66(pfx, opc) #define CASE_SIMD_SCALAR_FP(kind, pfx, opc) \ case X86EMUL_OPC##kind##_F3(pfx, opc): \ case X86EMUL_OPC##kind##_F2(pfx, opc) +#define CASE_SIMD_SINGLE_FP(kind, pfx, opc) \ + case X86EMUL_OPC##kind(pfx, opc): \ + case X86EMUL_OPC##kind##_F3(pfx, opc) CASE_SIMD_SCALAR_FP(, 0x0f, 0x2b): /* movnts{s,d} xmm,mem */ host_and_vcpu_must_have(sse4a); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |