Searched refs:float_flag_underflow (Results 1 – 25 of 26) sorted by relevance
12
/qemu/include/fpu/ |
H A D | softfloat-types.h | 155 float_flag_underflow = 0x0008, enumerator
|
/qemu/target/tricore/ |
H A D | fpu_helper.c | 45 | float_flag_underflow in f_get_excp_flags() 102 if (flags & float_flag_underflow || flags & float_flag_output_denormal_flushed) { in f_update_psw_flags()
|
/qemu/target/openrisc/ |
H A D | fpu_helper.c | 35 if (fexcp & float_flag_underflow) { in ieee_ex_to_openrisc()
|
/qemu/target/arm/tcg/ |
H A D | vfp_helper.c | 88 if (host_bits & (float_flag_underflow | float_flag_output_denormal_flushed)) { in vfp_exceptbits_from_host() 707 float_raise(float_flag_underflow, fpst); in HELPER() 760 float_raise(float_flag_underflow, fpst); in do_recpe_f32() 819 float_raise(float_flag_underflow, fpst); in HELPER()
|
/qemu/target/hexagon/ |
H A D | arch.c | 234 SOFTFLOAT_TEST_FLAG(float_flag_underflow, FPUNFF, FPUNFE); in arch_fpop_end()
|
H A D | fma_emu.c | 359 float_raise(float_flag_underflow, fp_status); in accum_round_float64()
|
/qemu/linux-user/arm/ |
H A D | cpu_loop.c | 262 if (rc & float_flag_underflow) { in emulate_arm_fpa11()
|
/qemu/target/m68k/ |
H A D | fpu_helper.c | 177 if (host_bits & (float_flag_underflow | float_flag_output_denormal_flushed)) { in cpu_m68k_exceptbits_from_host() 201 host_bits |= float_flag_underflow; in cpu_m68k_exceptbits_to_host()
|
/qemu/target/riscv/ |
H A D | fpu_helper.c | 32 hard |= (soft & float_flag_underflow) ? FPEXC_UF : 0; in riscv_cpu_get_fflags() 45 soft |= (hard & FPEXC_UF) ? float_flag_underflow : 0; in riscv_cpu_set_fflags()
|
/qemu/target/rx/ |
H A D | op_helper.c | 95 if (xcpt & float_flag_underflow) { in update_fpsw()
|
/qemu/target/alpha/ |
H A D | fpu_helper.c | 51 ret |= CONVERT_BIT(exc, float_flag_underflow, FPCR_UNF); in soft_to_fpcr_exc()
|
/qemu/target/sh4/ |
H A D | op_helper.c | 234 if (xcpt & float_flag_underflow) { in update_fpscr()
|
/qemu/target/xtensa/ |
H A D | fpu_helper.c | 53 { XTENSA_FP_U, float_flag_underflow, },
|
/qemu/target/microblaze/ |
H A D | op_helper.c | 132 if (flags & float_flag_underflow) { in update_fpu_flags()
|
/qemu/target/hppa/ |
H A D | fpu_helper.c | 107 hard_exp |= CONVERT_BIT(soft_exp, float_flag_underflow, R_FPSR_ENA_U_MASK); in update_fr0_op()
|
/qemu/tests/fp/ |
H A D | fp-test.c | 808 qemu_init_flags |= float_flag_underflow; in set_init_flags()
|
H A D | wrap.c.inc | 54 if (qflags & float_flag_underflow) {
|
/qemu/target/sparc/ |
H A D | fop_helper.c | 63 if (status & float_flag_underflow) { in check_ieee_exceptions()
|
/qemu/target/loongarch/tcg/ |
H A D | fpu_helper.c | 53 if (xcpt & float_flag_underflow) { in ieee_ex_to_loongarch()
|
/qemu/target/i386/tcg/ |
H A D | fpu_helper.c | 216 (new_flags & float_flag_underflow ? FPUS_UE : 0) | in merge_exception_flags() 3260 (mxcsr & FPUS_UE ? float_flag_underflow : 0) | in update_mxcsr_status() 3278 (flags & float_flag_underflow ? FPUS_UE : 0) | in update_mxcsr_from_sse_status()
|
/qemu/target/s390x/tcg/ |
H A D | fpu_helper.c | 52 s390_exc |= (exc & float_flag_underflow) ? S390_IEEE_MASK_UNDERFLOW : 0; in s390_softfloat_exc_to_ieee()
|
/qemu/fpu/ |
H A D | softfloat-parts.c.inc | 344 flags |= float_flag_underflow; 414 flags |= float_flag_underflow;
|
H A D | softfloat.c | 5078 float_raise(float_flag_underflow, status); in roundAndPackFloatx80() 5152 float_raise(float_flag_underflow, status); in roundAndPackFloatx80()
|
/qemu/target/mips/tcg/ |
H A D | fpu_helper.c | 189 if (ieee_xcpt & float_flag_underflow) { in ieee_to_mips_xcpt()
|
H A D | msa_helper.c | 6202 if (ieee_xcpt & float_flag_underflow) { in ieee_to_mips_xcpt_msa() 6227 ieee_exception_flags |= float_flag_underflow; in update_msacsr() 6384 set_float_exception_flags(ieee_ex & (~float_flag_underflow) in float32_to_q16() 6396 set_float_exception_flags(ieee_ex & (~float_flag_underflow) in float32_to_q16() 6436 set_float_exception_flags(ieee_ex & (~float_flag_underflow) in float64_to_q32() 6448 set_float_exception_flags(ieee_ex & (~float_flag_underflow) in float64_to_q32()
|
12