[Qemu-devel] Re: [PATCH 2/7] tcg-ppc: Implement deposit operation.

2011-01-07 Thread malc
On Fri, 7 Jan 2011, Richard Henderson wrote: > Signed-off-by: Richard Henderson > --- > tcg/ppc/tcg-target.c | 17 - > tcg/ppc/tcg-target.h |1 + > 2 files changed, 17 insertions(+), 1 deletions(-) > PPC bits look fine to me. [..snip..] -- mailto:av1...@comtv.ru

[Qemu-devel] Re: [PATCH 2/7] tcg-ppc: Implement deposit operation.

2011-01-11 Thread malc
On Mon, 10 Jan 2011, Richard Henderson wrote: > Signed-off-by: Richard Henderson > --- > tcg/ppc/tcg-target.c | 17 - > tcg/ppc/tcg-target.h |1 + > 2 files changed, 17 insertions(+), 1 deletions(-) > > diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c > index 79702

[Qemu-devel] Re: [PATCH 2/7] tcg-ppc: Implement deposit operation.

2011-01-11 Thread Richard Henderson
On 01/11/2011 04:40 AM, malc wrote: >> +tcg_out32 (s, RLWIMI >> + | RA(args[0]) >> + | RS(args[2]) >> + | SH(lsb_ofs) >> + | MB(msb_ofs - len + 1) >> + | ME(msb_ofs)); >> +

[Qemu-devel] Re: [PATCH 2/7] tcg-ppc: Implement deposit operation.

2011-01-11 Thread malc
On Tue, 11 Jan 2011, Richard Henderson wrote: > On 01/11/2011 04:40 AM, malc wrote: > >> +tcg_out32 (s, RLWIMI > >> + | RA(args[0]) > >> + | RS(args[2]) > >> + | SH(lsb_ofs) > >> + | MB(msb_ofs - le