[PULL 01/30] target/i386: add TCG support for UMIP

2022-02-15 Thread Paolo Bonzini
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

Re: Add TCG support for UMIP

2022-02-07 Thread Peter Maydell
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

Re: [PATCH qemu] Add TCG support for UMIP

2022-02-07 Thread Philippe Mathieu-Daudé via
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

Re: Add TCG support for UMIP

2022-02-07 Thread Paolo Bonzini
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

[PATCH qemu] Add TCG support for UMIP

2022-02-06 Thread ~hildardorf
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

Re: Add TCG support for UMIP

2022-02-06 Thread Philippe Mathieu-Daudé via
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

Add TCG support for UMIP

2022-02-06 Thread Gareth Webb
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