This patch adds several routines that track and expose information about various XSAVE-related features.
More specifically, it adds the ability to check whether a given XFEATURE is supported and which XSAVE extensions are supported.
Furthermore, it adds several routines for calculating the size and offsets within a save area given a XSAVE feature bitmap.
Details
Tested by converting D46397 to use the newly added interfaces.
No issues were encountered while tracing.
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
A quick remark regarding code placement - I couldn't decide where this code should reside so I ultimately placed it in cpu_machdep.c, but I'm not too happy about it.
I'd certainly like to hear your thoughts on where this should reside.
amd64/amd64/fpu.c seems to be the natural place for the new functions.
Despite named 'fpu', the file deals with the whole non-GPR part of the CPU state.
sys/x86/include/specialreg.h | ||
---|---|---|
381 ↗ | (On Diff #145860) | Commit this chunk already |
sys/x86/x86/cpu_machdep.c | ||
1811 ↗ | (On Diff #145860) | Does it ever make sense to call these functions if XSAVE(S) are not supported? |
1817 ↗ | (On Diff #145860) | 'else' is not needed |
Address @kib 's comments:
- split specialreg.h definitions into separate commit
- move xstate routines to amd64/fpu.c
sys/x86/x86/cpu_machdep.c | ||
---|---|---|
1811 ↗ | (On Diff #145860) | hm, calling these routines without xsave support does not make sense indeed, but I wonder what's the best way to handle this. |
sys/amd64/amd64/fpu.c | ||
---|---|---|
1315 | Why cannot you check for use_xsave instead? | |
sys/x86/x86/cpu_machdep.c | ||
1811 ↗ | (On Diff #145860) | Typically the low level functions are only called by the higher-level when the hw has required features because high-level simply refuses to work if features are absent. This makes the re-check of the features in the low-level redundant. But asserts are useful at least as a form of the documentation for assumptions. |
sys/amd64/amd64/fpu.c | ||
---|---|---|
1315 | I was not aware of use_xsave, thanks! |
sys/amd64/amd64/fpu.c | ||
---|---|---|
1308 | We already have xsave_area_desc. Also look how we malloc large enough xsave_area_desc instead of hardcoding the max known extension. |
sys/amd64/amd64/fpu.c | ||
---|---|---|
1308 | Same as with`use_xsave`, I managed to miss xsave_area_desc. |