[llvm] [VPlan] Introduce generic variable-length step support (PR #177114)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 4 20:57:36 PST 2026
================
@@ -4606,9 +4607,9 @@ void VPActiveLaneMaskPHIRecipe::printRecipe(raw_ostream &O, const Twine &Indent,
#endif
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
-void VPEVLBasedIVPHIRecipe::printRecipe(raw_ostream &O, const Twine &Indent,
- VPSlotTracker &SlotTracker) const {
- O << Indent << "EXPLICIT-VECTOR-LENGTH-BASED-IV-PHI ";
+void VPCurrentIterationRecipe::printRecipe(raw_ostream &O, const Twine &Indent,
+ VPSlotTracker &SlotTracker) const {
+ O << Indent << "Current-Iteration-PHI ";
----------------
lukel97 wrote:
Nit, use capitals to match the other recipes?
```suggestion
O << Indent << "CURRENT-ITERATION-PHI ";
```
https://github.com/llvm/llvm-project/pull/177114
More information about the llvm-commits
mailing list