Re: [PATCH 09/11] target/arm: 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é Reviewed-by: Alex Bennée -- Alex Bennée Virtualisation Tech Lead @ Linaro

[PATCH 09/11] target/arm: 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é --- target/arm/cpu.c | 3 +-- target/arm/tcg/cpu-v7m.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/targe