Page MenuHomeFreeBSD

Save all fpcr/fpsr bits in the AArch64 fenv_t
ClosedPublic

Authored by arichardson on Mar 9 2021, 8:02 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 7 2024, 11:36 PM
Unknown Object (File)
Feb 6 2024, 5:39 AM
Unknown Object (File)
Jan 12 2024, 5:06 AM
Unknown Object (File)
Dec 20 2023, 4:43 AM
Unknown Object (File)
Dec 13 2023, 2:12 AM
Unknown Object (File)
Dec 10 2023, 5:24 PM
Unknown Object (File)
Sep 21 2023, 4:28 PM
Unknown Object (File)
Sep 10 2023, 12:02 PM
Subscribers

Details

Summary

The existing code masked off all bits that it didn't know about. To be
future-proof, we should save and restore the entire fpcr/fpsr registers.
Additionally, the existing fesetenv() was incorrectly setting the rounding
mode in fpsr instead of fpcr.

This patch stores fpcr in the high 32 bits of fenv_t and fpsr in the low
bits instead of trying to interleave them in a single 32-bit field.

Technically, this is an ABI break if you re-compile parts of your code or
pass a fenv_t between DSOs that were compiled with different versions
of fenv.h. However, I believe we should fix this since the existing code
was broken and passing fenv_t across DSOs should rarely happen.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

I think this level of ABI breakage probably is ok. At least the size of the type hasn't changed.

This revision is now accepted and ready to land.Mar 11 2021, 1:57 PM