Skip to content

[FMV] Rename feature ssbs2 to ssbs. #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions SingleSource/UnitTests/AArch64/acle-fmv-features.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ CHECK(fp16, fp16, fp16, false, {
: : : "v0"
);
})
// When running try_ssbs2() on hardware which is affected by the "SSBS not fully
// self-synchronizing" errata, the linux kernel mutes the detection of ssbs2 via
// hardware caps. As a result the default version ends up running the ssbs2 code
// When running try_ssbs() on hardware which is affected by the "SSBS not fully
// self-synchronizing" errata, the linux kernel mutes the detection of ssbs via
// hardware caps. As a result the default version ends up running the ssbs code
// which was expected to trap originally. Passing IS_EXEMPT = true here allows
// the default version to UPASS.
CHECK(ssbs2, ssbs2, ssbs, true, {
CHECK(ssbs, ssbs, ssbs, true, {
asm volatile (
"mrs x0, SSBS" "\n"
"msr SSBS, x0" "\n"
Expand Down Expand Up @@ -402,7 +402,7 @@ int main(int, const char **) {
check_i8mm();
check_dit();
check_fp16();
check_ssbs2();
check_ssbs();
check_bti();
check_simd();
check_fp();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bf16
i8mm
dit
fp16
ssbs2
ssbs
bti
simd
fp
Expand Down