[llvm] [VPlan] Implement VPWidenLoad/StoreEVLRecipe::computeCost(). (PR #109644)
Elvis Wang via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 25 07:02:10 PDT 2024
================
@@ -2464,6 +2490,32 @@ void VPWidenStoreEVLRecipe::execute(VPTransformState &State) {
State.addMetadata(NewSI, SI);
}
+InstructionCost VPWidenStoreEVLRecipe::computeCost(ElementCount VF,
+ VPCostContext &Ctx) const {
+ if (!Consecutive || IsMasked) {
+ return VPWidenMemoryRecipe::computeCost(VF, Ctx);
+ }
----------------
ElvisWang123 wrote:
Removed, thanks.
https://github.com/llvm/llvm-project/pull/109644
More information about the llvm-commits
mailing list