[llvm] [LV][VPlan] Add initial support for CSA vectorization (PR #121222)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 9 14:13:39 PST 2025
================
@@ -2565,6 +2600,136 @@ class VPBranchOnMaskRecipe : public VPRecipeBase {
}
};
+class VPConditionalScalarAssignmentHeaderPHIRecipe final
+ : public VPHeaderPHIRecipe {
+public:
+ VPConditionalScalarAssignmentHeaderPHIRecipe(PHINode *Phi,
+ VPValue &VPInitData)
+ : VPHeaderPHIRecipe(VPDef::VPConditionalScalarAssignmentHeaderPHISC, Phi,
+ &VPInitData) {}
+
+ ~VPConditionalScalarAssignmentHeaderPHIRecipe() override = default;
+
+ VPConditionalScalarAssignmentHeaderPHIRecipe *clone() override {
+ return new VPConditionalScalarAssignmentHeaderPHIRecipe(
+ cast<PHINode>(getUnderlyingInstr()), *getOperand(0));
+ }
+
+ VPValue *NewData = nullptr;
+
+ void execute(VPTransformState &State) override;
+
+ InstructionCost computeCost(ElementCount VF,
+ VPCostContext &Ctx) const override;
+
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
+ /// Print the recipe.
+ void print(raw_ostream &O, const Twine &Indent,
+ VPSlotTracker &SlotTracker) const override;
+#endif
+
+ VP_CLASSOF_IMPL(VPDef::VPConditionalScalarAssignmentHeaderPHISC)
+
+ static inline bool classof(const VPHeaderPHIRecipe *R) {
+ return R->getVPDefID() == VPDef::VPConditionalScalarAssignmentHeaderPHISC;
+ }
+
+ VPValue *getVPInitData() { return getOperand(0); }
+
+ void setDataUpdate(VPValue *V) { NewData = V; }
+
+ VPValue *getVPNewData() { return NewData; }
+};
+
+class VPConditionalScalarAssignmentDataUpdateRecipe final
----------------
fhahn wrote:
It's difficult to tell what the semantics of the recipe are without comments; it's not clear to me why this cannot be just a select?
https://github.com/llvm/llvm-project/pull/121222
More information about the llvm-commits
mailing list