mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 19:00:58 +00:00
fpu/softfloat: Clean up parts_default_nan
Reduce the number of ifdefs. Correct the result for OpenRISC and TriCore (although TriCore fixed in target-specific code). Backports commit 8fb3d90203f328d1bebcf7f20934027bfc4e7f3f from qemu
This commit is contained in:
parent
df3436b518
commit
65c768593c
|
@ -130,22 +130,29 @@ static FloatParts parts_default_nan(float_status *status)
|
|||
FloatParts result;
|
||||
|
||||
#if defined(TARGET_SPARC) || defined(TARGET_M68K)
|
||||
/* !snan_bit_is_one, set all bits */
|
||||
frac = (1ULL << DECOMPOSED_BINARY_POINT) - 1;
|
||||
#elif defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_ALPHA) || \
|
||||
defined(TARGET_S390X) || defined(TARGET_RISCV)
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 1);
|
||||
#elif defined(TARGET_HPPA)
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 2);
|
||||
#else
|
||||
if (snan_bit_is_one(status)) {
|
||||
frac = (1ULL << (DECOMPOSED_BINARY_POINT - 1)) - 1;
|
||||
} else {
|
||||
#if defined(TARGET_MIPS)
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 1);
|
||||
#else
|
||||
#elif defined(TARGET_I386) || defined(TARGET_X86_64) \
|
||||
|| defined(TARGET_MICROBLAZE)
|
||||
/* !snan_bit_is_one, set sign and msb */
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 1);
|
||||
sign = 1;
|
||||
#endif
|
||||
#elif defined(TARGET_HPPA)
|
||||
/* snan_bit_is_one, set msb-1. */
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 2);
|
||||
#else
|
||||
/* This case is true for Alpha, ARM, MIPS, OpenRISC, PPC, RISC-V,
|
||||
* S390, SH4, TriCore, and Xtensa. I cannot find documentation
|
||||
* for Unicore32; the choice from the original commit is unchanged.
|
||||
* Our other supported targets, CRIS, LM32, Moxie, Nios2, and Tile,
|
||||
* do not have floating-point.
|
||||
*/
|
||||
if (snan_bit_is_one(status)) {
|
||||
/* set all bits other than msb */
|
||||
frac = (1ULL << (DECOMPOSED_BINARY_POINT - 1)) - 1;
|
||||
} else {
|
||||
/* set msb */
|
||||
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 1);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue