Re: [PATCH 3/4] target/arm: Support reading ZA[] from gdbstub

2023-06-27 Thread Luis Machado
On 6/27/23 14:07, Peter Maydell wrote: > On Thu, 22 Jun 2023 at 16:12, Richard Henderson > wrote: >> >> Mirror the existing support for SVE. >> >> Signed-off-by: Richard Henderson > > >> @@ -247,6 +247,61 @@ int aarch64_gdb_set_pauth_reg(CPUARMState *env, uint8_t >> *buf, int reg) >> return

Re: [PATCH 3/4] target/arm: Support reading ZA[] from gdbstub

2023-06-27 Thread Peter Maydell
On Thu, 22 Jun 2023 at 16:12, Richard Henderson wrote: > > Mirror the existing support for SVE. > > Signed-off-by: Richard Henderson > @@ -247,6 +247,61 @@ int aarch64_gdb_set_pauth_reg(CPUARMState *env, uint8_t > *buf, int reg) > return 0; > } > > +static int max_svq(ARMCPU *cpu) > +{ >

[PATCH 3/4] target/arm: Support reading ZA[] from gdbstub

2023-06-22 Thread Richard Henderson
Mirror the existing support for SVE. Signed-off-by: Richard Henderson --- target/arm/cpu.h | 1 + target/arm/internals.h | 3 ++ target/arm/gdbstub.c | 8 target/arm/gdbstub64.c | 88 ++ 4 files changed, 100 insertions(+) diff --git a/targ