[llvm] [LV] Optimize VPWidenIntOrFpInductionRecipe for known TC (PR #118828)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 04:08:58 PDT 2025


================
@@ -97,6 +97,13 @@ struct VPlanTransforms {
                                  unsigned BestUF,
                                  PredicatedScalarEvolution &PSE);
 
+  /// Try to simplify the branch condition of \p Plan. This may restrict the
+  /// resulting plan to \p BestVF and \p BestUF.
+  static bool simplifyBranchConditionForVFAndUF(VPlan &Plan,
+                                                ElementCount BestVF,
+                                                unsigned BestUF,
+                                                PredicatedScalarEvolution &PSE);
+
----------------
fhahn wrote:

This is only used in `optimizeForVFAndUF`, so it shouldn't need exposing here IIUC? It could be a static function in VPlanTransforms.cpp.

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


More information about the llvm-commits mailing list