[llvm] [VPlan] Introduce explicit broadcasts for live-ins. (PR #124644)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 10:24:16 PST 2025


================
@@ -1873,6 +1888,13 @@ class VPWidenIntOrFpInductionRecipe : public VPWidenInductionRecipe {
   VPValue *getLastUnrolledPartOperand() {
     return getNumOperands() == 5 ? getOperand(4) : this;
   }
+
+  /// Returns true if the recipe only uses the first lane of operand \p Op.
+  bool onlyFirstLaneUsed(const VPValue *Op) const override {
+    assert(is_contained(operands(), Op) &&
+           "Op must be an operand of the recipe");
+    return Op == getStartValue();
----------------
fhahn wrote:

I don't think so at the moment, VPWidenIntOrFpInductionRecipe is special in a way, it still produces its own vector start value in the preheader. To be cleaned up as followup?

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


More information about the llvm-commits mailing list