[llvm] 87f837c - [VPlan] Remove unneeded classof with VPHeaderRecipe args (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 3 12:54:28 PST 2025


Author: Florian Hahn
Date: 2025-03-03T20:52:28Z
New Revision: 87f837cb26f6ab543d70c42f1961b125102bff2c

URL: https://github.com/llvm/llvm-project/commit/87f837cb26f6ab543d70c42f1961b125102bff2c
DIFF: https://github.com/llvm/llvm-project/commit/87f837cb26f6ab543d70c42f1961b125102bff2c.diff

LOG: [VPlan] Remove unneeded classof with VPHeaderRecipe args (NFC).

The extra classof implementation is not needed any longer.

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlan.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index a19930d4b147f..57ac1a743bbf3 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -1981,10 +1981,6 @@ struct VPFirstOrderRecurrencePHIRecipe : public VPHeaderPHIRecipe {
 
   VP_CLASSOF_IMPL(VPDef::VPFirstOrderRecurrencePHISC)
 
-  static inline bool classof(const VPHeaderPHIRecipe *R) {
-    return R->getVPDefID() == VPDef::VPFirstOrderRecurrencePHISC;
-  }
-
   VPFirstOrderRecurrencePHIRecipe *clone() override {
     return new VPFirstOrderRecurrencePHIRecipe(
         cast<PHINode>(getUnderlyingInstr()), *getOperand(0));
@@ -2052,10 +2048,6 @@ class VPReductionPHIRecipe : public VPHeaderPHIRecipe,
 
   VP_CLASSOF_IMPL(VPDef::VPReductionPHISC)
 
-  static inline bool classof(const VPHeaderPHIRecipe *R) {
-    return R->getVPDefID() == VPDef::VPReductionPHISC;
-  }
-
   /// Generate the phi/select nodes.
   void execute(VPTransformState &State) override;
 
@@ -2874,10 +2866,6 @@ class VPCanonicalIVPHIRecipe : public VPHeaderPHIRecipe {
 
   VP_CLASSOF_IMPL(VPDef::VPCanonicalIVPHISC)
 
-  static inline bool classof(const VPHeaderPHIRecipe *D) {
-    return D->getVPDefID() == VPDef::VPCanonicalIVPHISC;
-  }
-
   void execute(VPTransformState &State) override {
     llvm_unreachable(
         "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
@@ -2937,10 +2925,6 @@ class VPActiveLaneMaskPHIRecipe : public VPHeaderPHIRecipe {
 
   VP_CLASSOF_IMPL(VPDef::VPActiveLaneMaskPHISC)
 
-  static inline bool classof(const VPHeaderPHIRecipe *D) {
-    return D->getVPDefID() == VPDef::VPActiveLaneMaskPHISC;
-  }
-
   /// Generate the active lane mask phi of the vector loop.
   void execute(VPTransformState &State) override;
 
@@ -2968,10 +2952,6 @@ class VPEVLBasedIVPHIRecipe : public VPHeaderPHIRecipe {
 
   VP_CLASSOF_IMPL(VPDef::VPEVLBasedIVPHISC)
 
-  static inline bool classof(const VPHeaderPHIRecipe *D) {
-    return D->getVPDefID() == VPDef::VPEVLBasedIVPHISC;
-  }
-
   void execute(VPTransformState &State) override {
     llvm_unreachable(
         "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");


        


More information about the llvm-commits mailing list