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
F167497810: D29160.id85421.diff
Sat, Aug 22, 7:32 AM
Unknown Object (File)
Sun, Aug 16, 8:16 PM
Unknown Object (File)
Fri, Aug 14, 5:53 PM
Unknown Object (File)
Thu, Aug 13, 7:09 PM
Unknown Object (File)
Tue, Aug 11, 9:59 PM
Unknown Object (File)
Mon, Aug 10, 7:25 AM
Unknown Object (File)
Mon, Aug 10, 7:12 AM
Unknown Object (File)
Sun, Aug 9, 7:58 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