[llvm] [LV][VPlan] Introduce VPScalarStore recipe to handle scalar stores in exit block. (PR #93148)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 29 05:24:49 PDT 2024
================
@@ -2963,6 +2965,54 @@ class VPScalarIVStepsRecipe : public VPRecipeWithIRFlags {
}
};
+/// A recipe to represent scalar stores that sink outside the vector loop.
+class VPScalarStoreRecipe : public VPRecipeBase {
+ StoreInst &SI;
----------------
fhahn wrote:
Can this be removed and be replaced by fields that store the needed information independent of StoreInst, so it can also be created without underlying IR?
https://github.com/llvm/llvm-project/pull/93148
More information about the llvm-commits
mailing list