Re: [PATCH 06/76] target/arm: Define new fp_status_a32 and fp_status_a64

2025-01-26 Thread Richard Henderson
On 1/24/25 08:27, Peter Maydell wrote: diff --git a/target/arm/tcg/translate.h b/target/arm/tcg/translate.h index 2d37d7c9f21..a7509b314b0 100644 --- a/target/arm/tcg/translate.h +++ b/target/arm/tcg/translate.h @@ -671,6 +671,8 @@ static inline CPUARMTBFlags arm_tbflags_from_tb(const Translatio

Re: [PATCH 06/76] target/arm: Define new fp_status_a32 and fp_status_a64

2025-01-25 Thread Richard Henderson
On 1/24/25 08:27, Peter Maydell wrote: We want to split the existing fp_status in the Arm CPUState into separate float_status fields for AArch32 and AArch64. (This is because new control bits defined by FEAT_AFP only have an effect for AArch64, not AArch32.) To make this split we will: * defin

[PATCH 06/76] target/arm: Define new fp_status_a32 and fp_status_a64

2025-01-24 Thread Peter Maydell
We want to split the existing fp_status in the Arm CPUState into separate float_status fields for AArch32 and AArch64. (This is because new control bits defined by FEAT_AFP only have an effect for AArch64, not AArch32.) To make this split we will: * define new fp_status_a32 and fp_status_a64 whic