Re: [RFC PATCH] i386/tcg: add AVX/AVX2 support (severely incomplete, just for preliminary feedback)

2022-02-16 Thread Alexander Kanavin
On Wed, 16 Feb 2022 at 10:24, Richard Henderson wrote: > > There's an enormous amount of legacy SSE instructions to adjust > > for VEX-128 and VEX-256 flavours, so I would want to know that this > > way would be acceptable. > > > > Signed-off-by: Alexander

[RFC PATCH] i386/tcg: add AVX/AVX2 support (severely incomplete, just for preliminary feedback)

2022-02-15 Thread Alexander Kanavin
thing need to be done differently? There's an enormous amount of legacy SSE instructions to adjust for VEX-128 and VEX-256 flavours, so I would want to know that this way would be acceptable. Signed-off-by: Alexander Kanavin --- target/i386/cpu.h| 6 ++ target/i386/ops_sse

[RFC PATCH] i386/tcg: add AVX/AVX2 support (severely incomplete, just for preliminary feedback)

2022-02-15 Thread Alexander Kanavin
thing need to be done differently? There's an enormous amount of legacy SSE instructions to adjust for VEX-128 and VEX-256 flavours, so I would want to know that this way would be acceptable. Signed-off-by: Alexander Kanavin --- target/i386/cpu.h| 6 ++ target/i386/ops_sse

Re: [Qemu-devel] [PATCH] egl-helpers.h: add a missing X11 include

2019-01-16 Thread Alexander Kanavin
On Wed, 16 Jan 2019 at 12:10, Philippe Mathieu-Daudé wrote: > >> we build mesa explicitly using "--with-platforms='drm surfaceless'" > >> (x11 is not in the list), which means MESA_EGL_NO_X11_HEADERS is > >> indeed defined according to [1]. We also enable opengl and gtk in > >> qemu. > > > > Hmm,

[Qemu-devel] [PATCH] egl-helpers.h: do not depend on X11 Window type, use EGLNativeWindowType

2019-01-16 Thread Alexander Kanavin
It was assumed that mesa provides the necessary X11 includes, but it is not always the case, as it can be configured without x11 support. Signed-off-by: Alexander Kanavin --- include/ui/egl-helpers.h | 2 +- ui/egl-helpers.c | 4 ++-- ui/gtk-egl.c | 2 +- 3 files changed, 4

Re: [Qemu-devel] [PATCH] egl-helpers.h: add a missing X11 include

2019-01-15 Thread Alexander Kanavin
On Tue, 15 Jan 2019 at 20:58, Philippe Mathieu-Daudé wrote: > Cc'ing Gerd (the maintainer) and Marc-André. > > On 1/15/19 12:50 PM, Alexander Kanavin wrote: > > Otherwise these errors occur, when qemu is built in the Yocto project: > > | In file included from > >

[Qemu-devel] [PATCH] egl-helpers.h: add a missing X11 include

2019-01-15 Thread Alexander Kanavin
: unknown type name 'Window'; did you mean 'minor'? | EGLSurface qemu_egl_init_surface_x11(EGLContext ectx, Window win); |^~ |minor Signed-off-by: Alexander Kanavin