[llvm] [MC] Speed up checkFeatures() (NFCI) (PR #130936)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:52:59 PDT 2025
================
@@ -317,14 +317,20 @@ 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) {
+ errs() << "'" << F << "' is not a recognized feature for this target"
+ << " (ignoring feature)\n";
----------------
arsenm wrote:
Is ApplyFeatureFlag dead now? Or is it used during the construction of the bitset? Can the warning be left for that? We should migrate this to using DiagnosticInfo at least
https://github.com/llvm/llvm-project/pull/130936
More information about the llvm-commits
mailing list