Home
last modified time | relevance | path

Searched refs:ahp_mode (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/target/arm/
H A Dvfp_helper.c518 float32 HELPER(vfp_fcvt_f16_to_f32)(uint32_t a, void *fpstp, uint32_t ahp_mode) in HELPER()
526 float32 r = float16_to_float32(a, !ahp_mode, fpst); in HELPER()
531 uint32_t HELPER(vfp_fcvt_f32_to_f16)(float32 a, void *fpstp, uint32_t ahp_mode) in HELPER()
539 float16 r = float32_to_float16(a, !ahp_mode, fpst); in HELPER()
544 float64 HELPER(vfp_fcvt_f16_to_f64)(uint32_t a, void *fpstp, uint32_t ahp_mode) in HELPER()
552 float64 r = float16_to_float64(a, !ahp_mode, fpst); in HELPER()
557 uint32_t HELPER(vfp_fcvt_f64_to_f16)(float64 a, void *fpstp, uint32_t ahp_mode) in HELPER()
565 float16 r = float64_to_float16(a, !ahp_mode, fpst); in HELPER()
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-vfp.c2557 TCGv_i32 ahp_mode; in trans_VCVT_f32_f16() local
2569 ahp_mode = get_ahp_flag(); in trans_VCVT_f32_f16()
2573 gen_helper_vfp_fcvt_f16_to_f32(tmp, tmp, fpst, ahp_mode); in trans_VCVT_f32_f16()
2581 TCGv_i32 ahp_mode; in trans_VCVT_f64_f16() local
2603 ahp_mode = get_ahp_flag(); in trans_VCVT_f64_f16()
2608 gen_helper_vfp_fcvt_f16_to_f64(vd, tmp, fpst, ahp_mode); in trans_VCVT_f64_f16()
2638 TCGv_i32 ahp_mode; in trans_VCVT_f16_f32() local
2650 ahp_mode = get_ahp_flag(); in trans_VCVT_f16_f32()
2654 gen_helper_vfp_fcvt_f32_to_f16(tmp, tmp, fpst, ahp_mode); in trans_VCVT_f16_f32()
2662 TCGv_i32 ahp_mode; in trans_VCVT_f16_f64() local
[all …]