Re: [Qemu-devel] [PATCH] x86: add AVX512_VPOPCNTDQ features

2017-01-12 Thread Eduardo Habkost
On Thu, Jan 12, 2017 at 07:18:20PM +0100, Paolo Bonzini wrote: > On 12/01/2017 18:10, Eduardo Habkost wrote: > > On Tue, Jan 10, 2017 at 03:07:31PM +0800, He Chen wrote: > >> AVX512_VPOPCNTDQ: Vector POPCNT instructions for word and qwords. > >> variable precision. > >> > >> Signed-off-by: He Chen

Re: [Qemu-devel] [PATCH] x86: add AVX512_VPOPCNTDQ features

2017-01-12 Thread Paolo Bonzini
On 12/01/2017 18:10, Eduardo Habkost wrote: > On Tue, Jan 10, 2017 at 03:07:31PM +0800, He Chen wrote: >> AVX512_VPOPCNTDQ: Vector POPCNT instructions for word and qwords. >> variable precision. >> >> Signed-off-by: He Chen >> --- >> target/i386/cpu.c | 2 +- >> target/i386/cpu.h | 1 + >> 2 fi

Re: [Qemu-devel] [PATCH] x86: add AVX512_VPOPCNTDQ features

2017-01-12 Thread Eduardo Habkost
On Tue, Jan 10, 2017 at 03:07:31PM +0800, He Chen wrote: > AVX512_VPOPCNTDQ: Vector POPCNT instructions for word and qwords. > variable precision. > > Signed-off-by: He Chen > --- > target/i386/cpu.c | 2 +- > target/i386/cpu.h | 1 + > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff -

[Qemu-devel] [PATCH] x86: add AVX512_VPOPCNTDQ features

2017-01-09 Thread He Chen
AVX512_VPOPCNTDQ: Vector POPCNT instructions for word and qwords. variable precision. Signed-off-by: He Chen --- target/i386/cpu.c | 2 +- target/i386/cpu.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/target/i386/cpu.c b/target/i386/cpu.c index b0640f1..ae900b5 100644 --