Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-30 Thread Igor Kovalenko
On 8/21/06, malc <[EMAIL PROTECTED]> wrote: On Mon, 21 Aug 2006, Igor Kovalenko wrote:> On 8/21/06, malc <[EMAIL PROTECTED]> wrote: On Mon, 21 Aug 2006, Igor Kovalenko wrote:>> >> > Right. Here is the real one with correct case labels. Sorry, forgot to mention that atop of the hex/bin

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread malc
On Mon, 21 Aug 2006, Igor Kovalenko wrote: On 8/21/06, malc <[EMAIL PROTECTED]> wrote: On Mon, 21 Aug 2006, Igor Kovalenko wrote: > Right. Here is the real one with correct case labels. Sorry, forgot to mention that atop of the hex/bin problem the code also suffers from lack of proper 16/6

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread Igor Kovalenko
On 8/21/06, malc <[EMAIL PROTECTED]> wrote: On Mon, 21 Aug 2006, Igor Kovalenko wrote:> Right. Here is the real one with correct case labels.Sorry, forgot to mention that atop of the hex/bin problem the code alsosuffers from lack of proper 16/64 bit modrm decoding. seems to me that 16 and 64 bit ca

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread malc
On Mon, 21 Aug 2006, Igor Kovalenko wrote: Right. Here is the real one with correct case labels. Sorry, forgot to mention that atop of the hex/bin problem the code also suffers from lack of proper 16/64 bit modrm decoding. -- mailto:[EMAIL PROTECTED] __

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread Igor Kovalenko
On 8/21/06, malc <[EMAIL PROTECTED]> wrote: On Mon, 21 Aug 2006, Igor Kovalenko wrote:> On 8/19/06, Paul Brook <[EMAIL PROTECTED]> wrote: On Saturday 19 August 2006 00:40, Igor Kovalenko wrote: >> > Hi!>> >>> > This patch adds handling of multi-byte NOPs, recent gcc/gas uses them>> for>> > x86

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread malc
On Mon, 21 Aug 2006, Igor Kovalenko wrote: On 8/19/06, Paul Brook <[EMAIL PROTECTED]> wrote: On Saturday 19 August 2006 00:40, Igor Kovalenko wrote: > Hi! > > This patch adds handling of multi-byte NOPs, recent gcc/gas uses them for > x86 code padding. > Patch checked with current opensuse-fac

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-20 Thread Igor Kovalenko
On 8/19/06, Paul Brook <[EMAIL PROTECTED]> wrote: On Saturday 19 August 2006 00:40, Igor Kovalenko wrote:> Hi!>> This patch adds handling of multi-byte NOPs, recent gcc/gas uses them for> x86 code padding.> Patch checked with current opensuse-factory x86 guest installation which is > built with new

Re: [Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-18 Thread Paul Brook
On Saturday 19 August 2006 00:40, Igor Kovalenko wrote: > Hi! > > This patch adds handling of multi-byte NOPs, recent gcc/gas uses them for > x86 code padding. > Patch checked with current opensuse-factory x86 guest installation which is > built with new gcc/gas tools. According to my amd64 docume

[Qemu-devel] [PATCH] handle multibyte NOPs

2006-08-18 Thread Igor Kovalenko
Hi!This patch adds handling of multi-byte NOPs, recent gcc/gas uses them for x86 code padding.Patch checked with current opensuse-factory x86 guest installation which is built with new gcc/gas tools.-- Kind Regards,Igor V. Kovalenko Index: target-i386/translate.c ===