[llvm] 585b75e - [VPlan] Simplify matching recipe ty and opcode in pattern match (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 12:05:15 PST 2025
Author: Florian Hahn
Date: 2025-02-05T20:03:42Z
New Revision: 585b75ec9aa5be3594bcd28077f6b2e0a198dec4
URL: https://github.com/llvm/llvm-project/commit/585b75ec9aa5be3594bcd28077f6b2e0a198dec4
DIFF: https://github.com/llvm/llvm-project/commit/585b75ec9aa5be3594bcd28077f6b2e0a198dec4.diff
LOG: [VPlan] Simplify matching recipe ty and opcode in pattern match (NFC).
Use parameter pack fold to simplify matching of recipe types and opcodes
for RecipeTys parameter pack.
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h b/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
index 4866426ad88486a..1e7c54894243b1e 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+++ b/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
@@ -128,32 +128,6 @@ inline bind_ty<VPValue> m_VPValue(VPValue *&V) { return V; }
namespace detail {
-/// A helper to match an opcode against multiple recipe types.
-template <unsigned Opcode, typename...> struct MatchRecipeAndOpcode {};
-
-template <unsigned Opcode, typename RecipeTy>
-struct MatchRecipeAndOpcode<Opcode, RecipeTy> {
- static bool match(const VPRecipeBase *R) {
- auto *DefR = dyn_cast<RecipeTy>(R);
- // Check for recipes that do not have opcodes.
- if constexpr (std::is_same<RecipeTy, VPScalarIVStepsRecipe>::value ||
- std::is_same<RecipeTy, VPCanonicalIVPHIRecipe>::value ||
- std::is_same<RecipeTy, VPWidenSelectRecipe>::value ||
- std::is_same<RecipeTy, VPDerivedIVRecipe>::value ||
- std::is_same<RecipeTy, VPWidenGEPRecipe>::value)
- return DefR;
- else
- return DefR && DefR->getOpcode() == Opcode;
- }
-};
-
-template <unsigned Opcode, typename RecipeTy, typename... RecipeTys>
-struct MatchRecipeAndOpcode<Opcode, RecipeTy, RecipeTys...> {
- static bool match(const VPRecipeBase *R) {
- return MatchRecipeAndOpcode<Opcode, RecipeTy>::match(R) ||
- MatchRecipeAndOpcode<Opcode, RecipeTys...>::match(R);
- }
-};
template <typename TupleTy, typename Fn, std::size_t... Is>
bool CheckTupleElements(const TupleTy &Ops, Fn P, std::index_sequence<Is...>) {
return (P(std::get<Is>(Ops), Is) && ...);
@@ -193,8 +167,9 @@ struct Recipe_match {
}
bool match(const VPRecipeBase *R) const {
- if (!detail::MatchRecipeAndOpcode<Opcode, RecipeTys...>::match(R))
+ if ((!matchRecipeAndOpcode<RecipeTys>(R) && ...))
return false;
+
assert(R->getNumOperands() == std::tuple_size<Ops_t>::value &&
"recipe with matched opcode the expected number of operands");
@@ -208,6 +183,21 @@ struct Recipe_match {
return Op.match(R->getOperand(R->getNumOperands() - Idx - 1));
});
}
+
+private:
+ template <typename RecipeTy>
+ static bool matchRecipeAndOpcode(const VPRecipeBase *R) {
+ auto *DefR = dyn_cast<RecipeTy>(R);
+ // Check for recipes that do not have opcodes.
+ if constexpr (std::is_same<RecipeTy, VPScalarIVStepsRecipe>::value ||
+ std::is_same<RecipeTy, VPCanonicalIVPHIRecipe>::value ||
+ std::is_same<RecipeTy, VPWidenSelectRecipe>::value ||
+ std::is_same<RecipeTy, VPDerivedIVRecipe>::value ||
+ std::is_same<RecipeTy, VPWidenGEPRecipe>::value)
+ return DefR;
+ else
+ return DefR && DefR->getOpcode() == Opcode;
+ }
};
template <typename Op0_t, unsigned Opcode, typename... RecipeTys>
More information about the llvm-commits
mailing list