target-ppc: remove PRECISE_EMULATION define
The PRECISE_EMULATION is "hardcoded" to one in target-ppc/exec.h and not something easily tunable. Remove it and non-precise emulation code as it doesn't make a noticeable difference in speed. People wanting speed improvement should use softfloat-native instead. Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
23979dc541
commit
dd94ad96e5
@ -26,9 +26,6 @@
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
|
||||
/* Precise emulation is needed to correctly emulate exception flags */
|
||||
#define USE_PRECISE_EMULATION 1
|
||||
|
||||
register struct CPUPPCState *env asm(AREG0);
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
|
@ -974,7 +974,7 @@ uint64_t helper_fadd (uint64_t arg1, uint64_t arg2)
|
||||
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
#if USE_PRECISE_EMULATION
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d))) {
|
||||
/* sNaN addition */
|
||||
@ -986,9 +986,7 @@ uint64_t helper_fadd (uint64_t arg1, uint64_t arg2)
|
||||
} else {
|
||||
farg1.d = float64_add(farg1.d, farg2.d, &env->fp_status);
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_add(farg1.d, farg2.d, &env->fp_status);
|
||||
#endif
|
||||
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -999,8 +997,7 @@ uint64_t helper_fsub (uint64_t arg1, uint64_t arg2)
|
||||
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
#if USE_PRECISE_EMULATION
|
||||
{
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d))) {
|
||||
/* sNaN subtraction */
|
||||
@ -1012,10 +1009,7 @@ uint64_t helper_fsub (uint64_t arg1, uint64_t arg2)
|
||||
} else {
|
||||
farg1.d = float64_sub(farg1.d, farg2.d, &env->fp_status);
|
||||
}
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_sub(farg1.d, farg2.d, &env->fp_status);
|
||||
#endif
|
||||
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -1026,7 +1020,7 @@ uint64_t helper_fmul (uint64_t arg1, uint64_t arg2)
|
||||
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
#if USE_PRECISE_EMULATION
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d))) {
|
||||
/* sNaN multiplication */
|
||||
@ -1038,9 +1032,7 @@ uint64_t helper_fmul (uint64_t arg1, uint64_t arg2)
|
||||
} else {
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
#endif
|
||||
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -1051,7 +1043,7 @@ uint64_t helper_fdiv (uint64_t arg1, uint64_t arg2)
|
||||
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
#if USE_PRECISE_EMULATION
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d))) {
|
||||
/* sNaN division */
|
||||
@ -1065,9 +1057,7 @@ uint64_t helper_fdiv (uint64_t arg1, uint64_t arg2)
|
||||
} else {
|
||||
farg1.d = float64_div(farg1.d, farg2.d, &env->fp_status);
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_div(farg1.d, farg2.d, &env->fp_status);
|
||||
#endif
|
||||
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -1116,12 +1106,10 @@ uint64_t helper_fctiw (uint64_t arg)
|
||||
farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI);
|
||||
} else {
|
||||
farg.ll = float64_to_int32(farg.d, &env->fp_status);
|
||||
#if USE_PRECISE_EMULATION
|
||||
/* XXX: higher bits are not supposed to be significant.
|
||||
* to make tests easier, return the same as a real PowerPC 750
|
||||
*/
|
||||
farg.ll |= 0xFFF80000ULL << 32;
|
||||
#endif
|
||||
}
|
||||
return farg.ll;
|
||||
}
|
||||
@ -1140,12 +1128,10 @@ uint64_t helper_fctiwz (uint64_t arg)
|
||||
farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI);
|
||||
} else {
|
||||
farg.ll = float64_to_int32_round_to_zero(farg.d, &env->fp_status);
|
||||
#if USE_PRECISE_EMULATION
|
||||
/* XXX: higher bits are not supposed to be significant.
|
||||
* to make tests easier, return the same as a real PowerPC 750
|
||||
*/
|
||||
farg.ll |= 0xFFF80000ULL << 32;
|
||||
#endif
|
||||
}
|
||||
return farg.ll;
|
||||
}
|
||||
@ -1245,7 +1231,7 @@ uint64_t helper_fmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
farg3.ll = arg3;
|
||||
#if USE_PRECISE_EMULATION
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d) ||
|
||||
float64_is_signaling_nan(farg3.d))) {
|
||||
@ -1277,10 +1263,7 @@ uint64_t helper_fmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
farg1.d = (farg1.d * farg2.d) + farg3.d;
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
farg1.d = float64_add(farg1.d, farg3.d, &env->fp_status);
|
||||
#endif
|
||||
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -1292,7 +1275,7 @@ uint64_t helper_fmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
farg1.ll = arg1;
|
||||
farg2.ll = arg2;
|
||||
farg3.ll = arg3;
|
||||
#if USE_PRECISE_EMULATION
|
||||
|
||||
if (unlikely(float64_is_signaling_nan(farg1.d) ||
|
||||
float64_is_signaling_nan(farg2.d) ||
|
||||
float64_is_signaling_nan(farg3.d))) {
|
||||
@ -1324,10 +1307,6 @@ uint64_t helper_fmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
farg1.d = (farg1.d * farg2.d) - farg3.d;
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
farg1.d = float64_sub(farg1.d, farg3.d, &env->fp_status);
|
||||
#endif
|
||||
return farg1.ll;
|
||||
}
|
||||
|
||||
@ -1350,7 +1329,6 @@ uint64_t helper_fnmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
/* Multiplication of zero by infinity */
|
||||
farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXIMZ);
|
||||
} else {
|
||||
#if USE_PRECISE_EMULATION
|
||||
#ifdef FLOAT128
|
||||
/* This is the way the PowerPC specification defines it */
|
||||
float128 ft0_128, ft1_128;
|
||||
@ -1370,10 +1348,6 @@ uint64_t helper_fnmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
#else
|
||||
/* This is OK on x86 hosts */
|
||||
farg1.d = (farg1.d * farg2.d) + farg3.d;
|
||||
#endif
|
||||
#else
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
farg1.d = float64_add(farg1.d, farg3.d, &env->fp_status);
|
||||
#endif
|
||||
if (likely(!float64_is_quiet_nan(farg1.d)))
|
||||
farg1.d = float64_chs(farg1.d);
|
||||
@ -1400,7 +1374,6 @@ uint64_t helper_fnmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
/* Multiplication of zero by infinity */
|
||||
farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXIMZ);
|
||||
} else {
|
||||
#if USE_PRECISE_EMULATION
|
||||
#ifdef FLOAT128
|
||||
/* This is the way the PowerPC specification defines it */
|
||||
float128 ft0_128, ft1_128;
|
||||
@ -1420,10 +1393,6 @@ uint64_t helper_fnmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3)
|
||||
#else
|
||||
/* This is OK on x86 hosts */
|
||||
farg1.d = (farg1.d * farg2.d) - farg3.d;
|
||||
#endif
|
||||
#else
|
||||
farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status);
|
||||
farg1.d = float64_sub(farg1.d, farg3.d, &env->fp_status);
|
||||
#endif
|
||||
if (likely(!float64_is_quiet_nan(farg1.d)))
|
||||
farg1.d = float64_chs(farg1.d);
|
||||
@ -1438,7 +1407,6 @@ uint64_t helper_frsp (uint64_t arg)
|
||||
float32 f32;
|
||||
farg.ll = arg;
|
||||
|
||||
#if USE_PRECISE_EMULATION
|
||||
if (unlikely(float64_is_signaling_nan(farg.d))) {
|
||||
/* sNaN square root */
|
||||
farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN);
|
||||
@ -1446,10 +1414,6 @@ uint64_t helper_frsp (uint64_t arg)
|
||||
f32 = float64_to_float32(farg.d, &env->fp_status);
|
||||
farg.d = float32_to_float64(f32, &env->fp_status);
|
||||
}
|
||||
#else
|
||||
f32 = float64_to_float32(farg.d, &env->fp_status);
|
||||
farg.d = float32_to_float64(f32, &env->fp_status);
|
||||
#endif
|
||||
return farg.ll;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user