Page MenuHomeFreeBSD

Save and restore floating point registers in get/set_mcontext().
ClosedPublic

Authored by jhb on Jan 16 2020, 10:51 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 23, 2:42 PM
Unknown Object (File)
Mon, May 19, 6:47 PM
Unknown Object (File)
Sun, May 11, 4:33 PM
Unknown Object (File)
Apr 29 2025, 4:08 PM
Unknown Object (File)
Apr 25 2025, 12:02 AM
Unknown Object (File)
Mar 4 2025, 5:49 PM
Unknown Object (File)
Mar 3 2025, 1:53 PM
Unknown Object (File)
Feb 24 2025, 11:51 PM
Subscribers

Details

Summary

arm64 and riscv were only saving and restoring floating point
registers for sendsig() and sys_sigreturn(), but not for getcontext(),
setcontext(), and swapcontext().

While here, remove a pointless check for uap being NULL from
sys_sigreturn().

Test Plan
  • booted riscv64 under spike which should exercise sendsig/sigreturn
  • have not tested arm64

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Jan 17 2020, 4:45 PM

Just curious, why does spike in particular exercise sendsig/sigreturn?

Just curious, why does spike in particular exercise sendsig/sigreturn?

I'm just assuming that booting multiuser involves catching at least one signal somewhere along the way.