[llvm] 1900634 - [MC] Speed up checkFeatures() (NFCI) (#130936)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 07:16:55 PDT 2025
Author: Nikita Popov
Date: 2025-03-12T15:16:51+01:00
New Revision: 190063464e12d730eef27873ce985e15a5eeee0b
URL: https://github.com/llvm/llvm-project/commit/190063464e12d730eef27873ce985e15a5eeee0b
DIFF: https://github.com/llvm/llvm-project/commit/190063464e12d730eef27873ce985e15a5eeee0b.diff
LOG: [MC] Speed up checkFeatures() (NFCI) (#130936)
checkFeatures() currently goes through ApplyFeatureFlag(), which will
also handle implied features. This is very slow -- just querying every
feature once takes up 10% of a Rust hello world compile.
However, if we only want to query whether certain features are
set/unset, we can do so directly -- implied features have already been
handled when the FeatureBitset was constructed.
Added:
Modified:
llvm/lib/MC/MCSubtargetInfo.cpp
Removed:
################################################################################
diff --git a/llvm/lib/MC/MCSubtargetInfo.cpp b/llvm/lib/MC/MCSubtargetInfo.cpp
index f59ec2f7c2602..d86eaad48420d 100644
--- a/llvm/lib/MC/MCSubtargetInfo.cpp
+++ b/llvm/lib/MC/MCSubtargetInfo.cpp
@@ -317,14 +317,18 @@ FeatureBitset MCSubtargetInfo::ApplyFeatureFlag(StringRef FS) {
bool MCSubtargetInfo::checkFeatures(StringRef FS) const {
SubtargetFeatures T(FS);
- FeatureBitset Set, All;
- for (std::string F : T.getFeatures()) {
- ::ApplyFeatureFlag(Set, F, ProcFeatures);
- if (F[0] == '-')
- F[0] = '+';
- ::ApplyFeatureFlag(All, F, ProcFeatures);
- }
- return (FeatureBits & All) == Set;
+ return all_of(T.getFeatures(), [this](const std::string &F) {
+ assert(SubtargetFeatures::hasFlag(F) &&
+ "Feature flags should start with '+' or '-'");
+ const SubtargetFeatureKV *FeatureEntry =
+ Find(SubtargetFeatures::StripFlag(F), ProcFeatures);
+ if (!FeatureEntry)
+ report_fatal_error(Twine("'") + F +
+ "' is not a recognized feature for this target");
+
+ return FeatureBits.test(FeatureEntry->Value) ==
+ SubtargetFeatures::isEnabled(F);
+ });
}
const MCSchedModel &MCSubtargetInfo::getSchedModelForCPU(StringRef CPU) const {
More information about the llvm-commits
mailing list