[llvm] [LoopVectorize] Perform loop versioning for some early exit loops (PR #120603)

Paul Walker via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 11 09:15:12 PST 2025


================
@@ -2133,6 +2155,41 @@ class GeneratedRTChecks {
 };
 } // namespace
 
+std::optional<unsigned> getMaxVScale(const Function &F,
+                                     const TargetTransformInfo &TTI) {
+  if (std::optional<unsigned> MaxVScale = TTI.getMaxVScale())
+    return MaxVScale;
+
+  if (F.hasFnAttribute(Attribute::VScaleRange))
+    return F.getFnAttribute(Attribute::VScaleRange).getVScaleRangeMax();
+
+  return std::nullopt;
+}
----------------
paulwalker-arm wrote:

Does `getMaxVScale` need to be moved? I could not spot any uses in `addPointerAlignmentChecks` but perhaps I've missed something?  

https://github.com/llvm/llvm-project/pull/120603


More information about the llvm-commits mailing list