-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[ARM][Driver] Ensure NEON is enabled and disabled correctly #137595
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -781,6 +781,30 @@ llvm::ARM::FPUKind arm::getARMTargetFeatures(const Driver &D, | |
if (FPUKind == llvm::ARM::FK_FPV5_D16 || FPUKind == llvm::ARM::FK_FPV5_SP_D16) | ||
Features.push_back("-mve.fp"); | ||
|
||
// If SIMD has been disabled and the selected FPU support NEON, then features | ||
// that rely on NEON Instructions should also be disabled. Cases where NEON | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Instructions" -> "instructions" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
// needs activating to support another feature is handled below with the | ||
// crypto feature. | ||
bool HasSimd = false; | ||
const auto ItSimd = | ||
llvm::find_if(llvm::reverse(Features), | ||
[](const StringRef F) { return F.contains("neon"); }); | ||
const bool FoundSimd = ItSimd != Features.rend(); | ||
const bool FPUSupportsNeon = (llvm::ARM::FPUNames[FPUKind].NeonSupport == | ||
llvm::ARM::NeonSupportLevel::Neon) || | ||
(llvm::ARM::FPUNames[FPUKind].NeonSupport == | ||
llvm::ARM::NeonSupportLevel::Crypto); | ||
if (FoundSimd) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
HasSimd = ItSimd->take_front() == "+"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The function that should be used here is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
if (!HasSimd && FPUSupportsNeon) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Optional: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have done this, it is a break from how multiple Features are usually added but it does make a cleaner implementation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2nd comment, I have updated this (again) to use |
||
Features.push_back("-sha2"); | ||
Features.push_back("-aes"); | ||
Features.push_back("-crypto"); | ||
Features.push_back("-dotprod"); | ||
Features.push_back("-bf16"); | ||
Features.push_back("-imm8"); | ||
} | ||
|
||
// For Arch >= ARMv8.0 && A or R profile: crypto = sha2 + aes | ||
// Rather than replace within the feature vector, determine whether each | ||
// algorithm is enabled and append this to the end of the vector. | ||
|
@@ -791,6 +815,9 @@ llvm::ARM::FPUKind arm::getARMTargetFeatures(const Driver &D, | |
// FIXME: this needs reimplementation after the TargetParser rewrite | ||
bool HasSHA2 = false; | ||
bool HasAES = false; | ||
bool HasBF16 = false; | ||
bool HasDotprod = false; | ||
bool HasI8MM = false; | ||
const auto ItCrypto = | ||
llvm::find_if(llvm::reverse(Features), [](const StringRef F) { | ||
return F.contains("crypto"); | ||
|
@@ -803,12 +830,25 @@ llvm::ARM::FPUKind arm::getARMTargetFeatures(const Driver &D, | |
llvm::find_if(llvm::reverse(Features), [](const StringRef F) { | ||
return F.contains("crypto") || F.contains("aes"); | ||
}); | ||
const bool FoundSHA2 = ItSHA2 != Features.rend(); | ||
const bool FoundAES = ItAES != Features.rend(); | ||
if (FoundSHA2) | ||
const auto ItBF16 = | ||
llvm::find_if(llvm::reverse(Features), | ||
[](const StringRef F) { return F.contains("bf16"); }); | ||
const auto ItDotprod = | ||
llvm::find_if(llvm::reverse(Features), | ||
[](const StringRef F) { return F.contains("dotprod"); }); | ||
const auto ItI8MM = | ||
llvm::find_if(llvm::reverse(Features), | ||
[](const StringRef F) { return F.contains("i8mm"); }); | ||
if (ItSHA2 != Features.rend()) | ||
HasSHA2 = ItSHA2->take_front() == "+"; | ||
if (FoundAES) | ||
if (ItAES != Features.rend()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
HasAES = ItAES->take_front() == "+"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
if (ItBF16 != Features.rend()) | ||
HasBF16 = ItBF16->take_front() == "+"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
if (ItDotprod != Features.rend()) | ||
HasDotprod = ItDotprod->take_front() == "+"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
if (ItI8MM != Features.rend()) | ||
HasI8MM = ItI8MM->take_front() == "+"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
if (ItCrypto != Features.rend()) { | ||
if (HasSHA2 && HasAES) | ||
Features.push_back("+crypto"); | ||
|
@@ -823,6 +863,9 @@ llvm::ARM::FPUKind arm::getARMTargetFeatures(const Driver &D, | |
else | ||
Features.push_back("-aes"); | ||
} | ||
// If any of these features are enabled, NEON should also be enabled. | ||
if (HasAES || HasSHA2 || HasBF16 || HasDotprod || HasI8MM) | ||
Features.push_back("+neon"); | ||
|
||
if (HasSHA2 || HasAES) { | ||
StringRef ArchSuffix = arm::getLLVMArchSuffixForARM( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"support" → "supports"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done