Re: [PATCH v3 12/29] tcg/ppc: Use power10 byte-reverse instructions

2021-06-28 Thread Richard Henderson
On 6/28/21 7:33 AM, Peter Maydell wrote: +if (have_isa_3_10) { Side note, why do we call this have_isa_3_10 when it's checking for ISA 3.1, not 3.10 ? I think it's just because it made the columns line up: #define have_isa_2_06 (have_isa >= tcg_isa_2_06) #define have_isa_2_07 (have_isa

Re: [PATCH v3 12/29] tcg/ppc: Use power10 byte-reverse instructions

2021-06-28 Thread Peter Maydell
On Sat, 26 Jun 2021 at 07:41, Richard Henderson wrote: > > Cc: qemu-...@nongnu.org > Signed-off-by: Richard Henderson > --- > tcg/ppc/tcg-target.c.inc | 34 ++ > 1 file changed, 34 insertions(+) Reviewed-by: Peter Maydell > +if (have_isa_3_10) { Side note,

[PATCH v3 12/29] tcg/ppc: Use power10 byte-reverse instructions

2021-06-25 Thread Richard Henderson
Cc: qemu-...@nongnu.org Signed-off-by: Richard Henderson --- tcg/ppc/tcg-target.c.inc | 34 ++ 1 file changed, 34 insertions(+) diff --git a/tcg/ppc/tcg-target.c.inc b/tcg/ppc/tcg-target.c.inc index 33f0139519..e0f4665213 100644 --- a/tcg/ppc/tcg-target.c.inc +++