Page MenuHomeFreeBSD

[PowerPC64LE] Fix LE VSX/fpr interop
ClosedPublic

Authored by bdragon on Dec 1 2020, 1:11 AM.
Referenced Files
Unknown Object (File)
Tue, May 28, 1:25 PM
Unknown Object (File)
Fri, May 24, 2:35 PM
Unknown Object (File)
Wed, May 22, 9:48 AM
Unknown Object (File)
Sat, May 4, 11:46 PM
Unknown Object (File)
Apr 28 2024, 12:46 PM
Unknown Object (File)
Apr 27 2024, 5:11 AM
Unknown Object (File)
Apr 22 2024, 3:23 AM
Unknown Object (File)
Apr 21 2024, 10:02 AM
Subscribers

Details

Summary

In the PCB struct, we need to match the VSX register file layout correctly, as the VSRs shadow the FPRs.

In LE, we need to have a dword of padding before the fprs so they end up on the correct side, as the struct may be manipulated by either the FP routines or the VSX routines.

Additionally, when saving and restoring fprs, we need to explicitly target the fpr union member so it gets offset correctly on LE.

Fixes weirdness with FP registers in VSX-using programs (A fpr that was saved by the FP routines but restored by the VSX routines was becoming 0 due to being loaded to the wrong side of the vsr.)

Original patch by jhibbits.

Diff Detail

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