[llvm] [LV] Compute register usage for interleaving on VPlan. (PR #126437)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 08:30:11 PDT 2025
================
@@ -4878,8 +4879,232 @@ void LoopVectorizationCostModel::collectElementTypesForWidening() {
}
}
+/// Estimate the register usage for \p Plan and vectorization factors in \p VFs.
+/// Returns the register usage for each VF in \p VFs.
+static SmallVector<LoopVectorizationCostModel::RegisterUsage, 8>
+calculateRegisterUsage(VPlan &Plan, ArrayRef<ElementCount> VFs,
----------------
sdesmalen-arm wrote:
Does this replace the existing `calculateRegisterUsage`? (from a cursory glance at the implementation of this function I would think yes, so I'm a bit surprised not to see the other one being removed)
https://github.com/llvm/llvm-project/pull/126437
More information about the llvm-commits
mailing list