From: Gareth Webb
Signed-off-by: Gareth Webb
Message-Id: <164425598317.21902.425775915932975614...@git.sr.ht>
Signed-off-by: Paolo Bonzini
---
target/i386/cpu.c | 2 +-
target/i386/cpu.h | 4 +++-
target/i386/helper.c| 8 +++-
target/i386/tcg/translate.c | 15
On Sun, 6 Feb 2022 at 21:07, Gareth Webb
wrote:
>
> Dear Maintainers,
>
> Please find attached a .patch that adds support for the UMIP cpu feature to
> x86 TCG. Apologies for the patch being via attachment, I can not get git
> send-email to play nice with office365.
>
> This is my first time com
On 6/2/22 20:16, ~hildardorf wrote:
From: Gareth Webb
---
target/i386/cpu.c | 2 +-
target/i386/cpu.h | 4 +++-
target/i386/helper.c| 8 +++-
target/i386/tcg/translate.c | 12
4 files changed, 23 insertions(+), 3 deletions(-)
Thanks for pos
On 2/6/22 21:27, Gareth Webb wrote:
@@ -7382,6 +7383,8 @@ static target_ulong disas_insn(DisasContext *s, CPUState
*cpu)
case 0: /* sldt */
if (!PE(s) || VM86(s))
goto illegal_op;
+if ((PE(s) || LMA(s)) && s->cpuid_7_0_ecx_features & CPUID_7_0_E
From: Gareth Webb
---
target/i386/cpu.c | 2 +-
target/i386/cpu.h | 4 +++-
target/i386/helper.c| 8 +++-
target/i386/tcg/translate.c | 12
4 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index
On 6/2/22 21:27, Gareth Webb wrote:
Dear Maintainers,
Please find attached a .patch that adds support for the UMIP cpu feature to x86
TCG. Apologies for the patch being via attachment, I can not get git send-email
to play nice with office365.
Can you try posting from sourcehut? It worked for
issues or omissions.
Kind Regards
Gareth WebbFrom f26c7d99193ffe9313c67cad5de66020b65eb9eb Mon Sep 17 00:00:00 2001
From: Gareth Webb
Date: Sun, 6 Feb 2022 19:16:59 +
Subject: [PATCH] Add TCG support for UMIP
Signed-off-by: Gareth Webb
---
target/i386/cpu.c | 2 +-
target/i386