[llvm] 5b38fb5 - [VPlan] Remove remaining references to VPScalarPHIRecipe (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 12:37:20 PDT 2025
Author: Florian Hahn
Date: 2025-03-24T19:37:00Z
New Revision: 5b38fb59dfb67ddaf123dc11863218f4b48ea014
URL: https://github.com/llvm/llvm-project/commit/5b38fb59dfb67ddaf123dc11863218f4b48ea014
DIFF: https://github.com/llvm/llvm-project/commit/5b38fb59dfb67ddaf123dc11863218f4b48ea014.diff
LOG: [VPlan] Remove remaining references to VPScalarPHIRecipe (NFC).
VPScalarPHIRecipe has been replaced by VPInstructions with PHI opcodes.
Strip remaining dead references to VPScalarPHIRecipe.
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlan.h
llvm/lib/Transforms/Vectorize/VPlanValue.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 433fb247754bc..a7c85d30ba9f0 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -532,7 +532,6 @@ class VPSingleDefRecipe : public VPRecipeBase, public VPValue {
case VPRecipeBase::VPWidenPointerInductionSC:
case VPRecipeBase::VPReductionPHISC:
case VPRecipeBase::VPScalarCastSC:
- case VPRecipeBase::VPScalarPHISC:
case VPRecipeBase::VPPartialReductionSC:
return true;
case VPRecipeBase::VPBranchOnMaskSC:
@@ -2819,8 +2818,8 @@ class VPCanonicalIVPHIRecipe : public VPHeaderPHIRecipe {
VP_CLASSOF_IMPL(VPDef::VPCanonicalIVPHISC)
void execute(VPTransformState &State) override {
- llvm_unreachable(
- "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
+ llvm_unreachable("cannot execute this recipe, should be replaced by a "
+ "scalar phi recipe");
}
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
@@ -2905,8 +2904,8 @@ class VPEVLBasedIVPHIRecipe : public VPHeaderPHIRecipe {
VP_CLASSOF_IMPL(VPDef::VPEVLBasedIVPHISC)
void execute(VPTransformState &State) override {
- llvm_unreachable(
- "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
+ llvm_unreachable("cannot execute this recipe, should be replaced by a "
+ "scalar phi recipe");
}
/// Return the cost of this VPEVLBasedIVPHIRecipe.
diff --git a/llvm/lib/Transforms/Vectorize/VPlanValue.h b/llvm/lib/Transforms/Vectorize/VPlanValue.h
index d0fa62978c1b4..2b762d0533d19 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanValue.h
+++ b/llvm/lib/Transforms/Vectorize/VPlanValue.h
@@ -360,7 +360,6 @@ class VPDef {
VPFirstOrderRecurrencePHISC,
VPWidenIntOrFpInductionSC,
VPWidenPointerInductionSC,
- VPScalarPHISC,
VPReductionPHISC,
// END: SubclassID for recipes that inherit VPHeaderPHIRecipe
// END: Phi-like recipes
More information about the llvm-commits
mailing list