[llvm] [LV] Decompose WidenIntOrFPInduction into phi and update recipes (PR #82021)

Shih-Po Hung via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 17 08:59:48 PST 2024


================
@@ -2859,6 +2877,9 @@ class VPlan {
   /// Represents the loop-invariant VF * UF of the vector loop region.
   VPValue VFxUF;
 
+  /// Represents widened VF * UF for each UF of the vector loop region.
+  VPValue WidenVFxUF;
----------------
arcbbb wrote:

To work with VPValue type inference , I create a recipe for VFxUF in #78309.
I thought similar challenge might arise with WidenVFxUF.
I'm seeking @fhahn's perspective on this matter.

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


More information about the llvm-commits mailing list