Re: [PATCH 06/11] gdbstub: Prefer cached CpuClass over CPU_GET_CLASS() macro

2025-01-21 Thread Richard Henderson
On 1/21/25 03:40, Philippe Mathieu-Daudé wrote: CpuState caches its CPUClass since commit 6fbdff87062 ("cpu: cache CPUClass in CPUState for hot code paths"), use it. Signed-off-by: Philippe Mathieu-Daudé --- gdbstub/gdbstub.c | 26 +- gdbstub/system.c | 7 ++-

Re: [PATCH 06/11] gdbstub: Prefer cached CpuClass over CPU_GET_CLASS() macro

2025-01-21 Thread Alex Bennée
Philippe Mathieu-Daudé writes: > CpuState caches its CPUClass since commit 6fbdff87062 > ("cpu: cache CPUClass in CPUState for hot code paths"), > use it. > > Signed-off-by: Philippe Mathieu-Daudé Acked-by: Alex Bennée -- Alex Bennée Virtualisation Tech Lead @ Linaro

[PATCH 06/11] gdbstub: Prefer cached CpuClass over CPU_GET_CLASS() macro

2025-01-21 Thread Philippe Mathieu-Daudé
CpuState caches its CPUClass since commit 6fbdff87062 ("cpu: cache CPUClass in CPUState for hot code paths"), use it. Signed-off-by: Philippe Mathieu-Daudé --- gdbstub/gdbstub.c | 26 +- gdbstub/system.c | 7 ++- gdbstub/user-target.c | 6 ++ gdbstub/us