mirror of https://github.com/xemu-project/xemu.git
target/arm: Rename FPCR_ QC, NZCV macros to FPSR_
The QC, N, Z, C, V bits live in the FPSR, not the FPCR. Rename the macros that define these bits accordingly. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20240628142347.1283015-8-peter.maydell@linaro.org
This commit is contained in:
parent
ce07ea61ed
commit
a26db547b7
|
@ -1697,6 +1697,7 @@ void vfp_set_fpscr(CPUARMState *env, uint32_t val);
|
|||
#define FPSR_MASK 0xf800009f
|
||||
#define FPCR_MASK 0x07ff9f00
|
||||
|
||||
/* FPCR bits */
|
||||
#define FPCR_IOE (1 << 8) /* Invalid Operation exception trap enable */
|
||||
#define FPCR_DZE (1 << 9) /* Divide by Zero exception trap enable */
|
||||
#define FPCR_OFE (1 << 10) /* Overflow exception trap enable */
|
||||
|
@ -1708,18 +1709,20 @@ void vfp_set_fpscr(CPUARMState *env, uint32_t val);
|
|||
#define FPCR_FZ (1 << 24) /* Flush-to-zero enable bit */
|
||||
#define FPCR_DN (1 << 25) /* Default NaN enable bit */
|
||||
#define FPCR_AHP (1 << 26) /* Alternative half-precision */
|
||||
#define FPCR_QC (1 << 27) /* Cumulative saturation bit */
|
||||
#define FPCR_V (1 << 28) /* FP overflow flag */
|
||||
#define FPCR_C (1 << 29) /* FP carry flag */
|
||||
#define FPCR_Z (1 << 30) /* FP zero flag */
|
||||
#define FPCR_N (1 << 31) /* FP negative flag */
|
||||
|
||||
#define FPCR_LTPSIZE_SHIFT 16 /* LTPSIZE, M-profile only */
|
||||
#define FPCR_LTPSIZE_MASK (7 << FPCR_LTPSIZE_SHIFT)
|
||||
#define FPCR_LTPSIZE_LENGTH 3
|
||||
|
||||
#define FPCR_NZCV_MASK (FPCR_N | FPCR_Z | FPCR_C | FPCR_V)
|
||||
#define FPCR_NZCVQC_MASK (FPCR_NZCV_MASK | FPCR_QC)
|
||||
/* FPSR bits */
|
||||
#define FPSR_QC (1 << 27) /* Cumulative saturation bit */
|
||||
#define FPSR_V (1 << 28) /* FP overflow flag */
|
||||
#define FPSR_C (1 << 29) /* FP carry flag */
|
||||
#define FPSR_Z (1 << 30) /* FP zero flag */
|
||||
#define FPSR_N (1 << 31) /* FP negative flag */
|
||||
|
||||
#define FPSR_NZCV_MASK (FPSR_N | FPSR_Z | FPSR_C | FPSR_V)
|
||||
#define FPSR_NZCVQC_MASK (FPSR_NZCV_MASK | FPSR_QC)
|
||||
|
||||
/**
|
||||
* vfp_get_fpsr: read the AArch64 FPSR
|
||||
|
|
|
@ -1115,21 +1115,21 @@ static void do_vadc(CPUARMState *env, uint32_t *d, uint32_t *n, uint32_t *m,
|
|||
|
||||
if (update_flags) {
|
||||
/* Store C, clear NZV. */
|
||||
env->vfp.fpsr &= ~FPCR_NZCV_MASK;
|
||||
env->vfp.fpsr |= carry_in * FPCR_C;
|
||||
env->vfp.fpsr &= ~FPSR_NZCV_MASK;
|
||||
env->vfp.fpsr |= carry_in * FPSR_C;
|
||||
}
|
||||
mve_advance_vpt(env);
|
||||
}
|
||||
|
||||
void HELPER(mve_vadc)(CPUARMState *env, void *vd, void *vn, void *vm)
|
||||
{
|
||||
bool carry_in = env->vfp.fpsr & FPCR_C;
|
||||
bool carry_in = env->vfp.fpsr & FPSR_C;
|
||||
do_vadc(env, vd, vn, vm, 0, carry_in, false);
|
||||
}
|
||||
|
||||
void HELPER(mve_vsbc)(CPUARMState *env, void *vd, void *vn, void *vm)
|
||||
{
|
||||
bool carry_in = env->vfp.fpsr & FPCR_C;
|
||||
bool carry_in = env->vfp.fpsr & FPSR_C;
|
||||
do_vadc(env, vd, vn, vm, -1, carry_in, false);
|
||||
}
|
||||
|
||||
|
|
|
@ -332,7 +332,7 @@ static bool gen_M_fp_sysreg_write(DisasContext *s, int regno,
|
|||
if (dc_isar_feature(aa32_mve, s)) {
|
||||
/* QC is only present for MVE; otherwise RES0 */
|
||||
TCGv_i32 qc = tcg_temp_new_i32();
|
||||
tcg_gen_andi_i32(qc, tmp, FPCR_QC);
|
||||
tcg_gen_andi_i32(qc, tmp, FPSR_QC);
|
||||
/*
|
||||
* The 4 vfp.qc[] fields need only be "zero" vs "non-zero";
|
||||
* here writing the same value into all elements is simplest.
|
||||
|
@ -340,9 +340,9 @@ static bool gen_M_fp_sysreg_write(DisasContext *s, int regno,
|
|||
tcg_gen_gvec_dup_i32(MO_32, offsetof(CPUARMState, vfp.qc),
|
||||
16, 16, qc);
|
||||
}
|
||||
tcg_gen_andi_i32(tmp, tmp, FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPSR_NZCV_MASK);
|
||||
fpscr = load_cpu_field_low32(vfp.fpsr);
|
||||
tcg_gen_andi_i32(fpscr, fpscr, ~FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(fpscr, fpscr, ~FPSR_NZCV_MASK);
|
||||
tcg_gen_or_i32(fpscr, fpscr, tmp);
|
||||
store_cpu_field_low32(fpscr, vfp.fpsr);
|
||||
break;
|
||||
|
@ -390,7 +390,7 @@ static bool gen_M_fp_sysreg_write(DisasContext *s, int regno,
|
|||
tcg_gen_deposit_i32(control, control, sfpa,
|
||||
R_V7M_CONTROL_SFPA_SHIFT, 1);
|
||||
store_cpu_field(control, v7m.control[M_REG_S]);
|
||||
tcg_gen_andi_i32(tmp, tmp, ~FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, ~FPSR_NZCV_MASK);
|
||||
gen_helper_vfp_set_fpscr(tcg_env, tmp);
|
||||
s->base.is_jmp = DISAS_UPDATE_NOCHAIN;
|
||||
break;
|
||||
|
@ -457,7 +457,7 @@ static bool gen_M_fp_sysreg_read(DisasContext *s, int regno,
|
|||
case ARM_VFP_FPSCR_NZCVQC:
|
||||
tmp = tcg_temp_new_i32();
|
||||
gen_helper_vfp_get_fpscr(tmp, tcg_env);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPCR_NZCVQC_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPSR_NZCVQC_MASK);
|
||||
storefn(s, opaque, tmp, true);
|
||||
break;
|
||||
case QEMU_VFP_FPSCR_NZCV:
|
||||
|
@ -466,7 +466,7 @@ static bool gen_M_fp_sysreg_read(DisasContext *s, int regno,
|
|||
* helper call for the "VMRS to CPSR.NZCV" insn.
|
||||
*/
|
||||
tmp = load_cpu_field_low32(vfp.fpsr);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPSR_NZCV_MASK);
|
||||
storefn(s, opaque, tmp, true);
|
||||
break;
|
||||
case ARM_VFP_FPCXT_S:
|
||||
|
@ -476,7 +476,7 @@ static bool gen_M_fp_sysreg_read(DisasContext *s, int regno,
|
|||
tmp = tcg_temp_new_i32();
|
||||
sfpa = tcg_temp_new_i32();
|
||||
gen_helper_vfp_get_fpscr(tmp, tcg_env);
|
||||
tcg_gen_andi_i32(tmp, tmp, ~FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, ~FPSR_NZCV_MASK);
|
||||
control = load_cpu_field(v7m.control[M_REG_S]);
|
||||
tcg_gen_andi_i32(sfpa, control, R_V7M_CONTROL_SFPA_MASK);
|
||||
tcg_gen_shli_i32(sfpa, sfpa, 31 - R_V7M_CONTROL_SFPA_SHIFT);
|
||||
|
@ -529,7 +529,7 @@ static bool gen_M_fp_sysreg_read(DisasContext *s, int regno,
|
|||
sfpa = tcg_temp_new_i32();
|
||||
fpscr = tcg_temp_new_i32();
|
||||
gen_helper_vfp_get_fpscr(fpscr, tcg_env);
|
||||
tcg_gen_andi_i32(tmp, fpscr, ~FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, fpscr, ~FPSR_NZCV_MASK);
|
||||
control = load_cpu_field(v7m.control[M_REG_S]);
|
||||
tcg_gen_andi_i32(sfpa, control, R_V7M_CONTROL_SFPA_MASK);
|
||||
tcg_gen_shli_i32(sfpa, sfpa, 31 - R_V7M_CONTROL_SFPA_SHIFT);
|
||||
|
|
|
@ -834,7 +834,7 @@ static bool trans_VMSR_VMRS(DisasContext *s, arg_VMSR_VMRS *a)
|
|||
case ARM_VFP_FPSCR:
|
||||
if (a->rt == 15) {
|
||||
tmp = load_cpu_field_low32(vfp.fpsr);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPCR_NZCV_MASK);
|
||||
tcg_gen_andi_i32(tmp, tmp, FPSR_NZCV_MASK);
|
||||
} else {
|
||||
tmp = tcg_temp_new_i32();
|
||||
gen_helper_vfp_get_fpscr(tmp, tcg_env);
|
||||
|
|
|
@ -196,7 +196,7 @@ uint32_t vfp_get_fpsr(CPUARMState *env)
|
|||
fpsr |= vfp_get_fpsr_from_host(env);
|
||||
|
||||
i = env->vfp.qc[0] | env->vfp.qc[1] | env->vfp.qc[2] | env->vfp.qc[3];
|
||||
fpsr |= i ? FPCR_QC : 0;
|
||||
fpsr |= i ? FPSR_QC : 0;
|
||||
return fpsr;
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ void vfp_set_fpsr(CPUARMState *env, uint32_t val)
|
|||
* The bit we set within vfp.qc[] is arbitrary; the array as a
|
||||
* whole being zero/non-zero is what counts.
|
||||
*/
|
||||
env->vfp.qc[0] = val & FPCR_QC;
|
||||
env->vfp.qc[0] = val & FPSR_QC;
|
||||
env->vfp.qc[1] = 0;
|
||||
env->vfp.qc[2] = 0;
|
||||
env->vfp.qc[3] = 0;
|
||||
|
@ -234,7 +234,7 @@ void vfp_set_fpsr(CPUARMState *env, uint32_t val)
|
|||
* fp_status, and QC is in vfp.qc[]. Store the NZCV bits there,
|
||||
* and zero any of the other FPSR bits.
|
||||
*/
|
||||
val &= FPCR_NZCV_MASK;
|
||||
val &= FPSR_NZCV_MASK;
|
||||
env->vfp.fpsr = val;
|
||||
}
|
||||
|
||||
|
@ -1156,7 +1156,7 @@ uint32_t HELPER(vjcvt)(float64 value, CPUARMState *env)
|
|||
uint32_t z = (pair >> 32) == 0;
|
||||
|
||||
/* Store Z, clear NCV, in FPSCR.NZCV. */
|
||||
env->vfp.fpsr = (env->vfp.fpsr & ~FPCR_NZCV_MASK) | (z * FPCR_Z);
|
||||
env->vfp.fpsr = (env->vfp.fpsr & ~FPSR_NZCV_MASK) | (z * FPSR_Z);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue