[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:15 PST 2025
================
@@ -1558,6 +1566,13 @@ class VPWidenGEPRecipe : public VPRecipeWithIRFlags {
void print(raw_ostream &O, const Twine &Indent,
VPSlotTracker &SlotTracker) const override;
#endif
+
+ /// 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 == getOperand(0);
----------------
fhahn wrote:
Yep, updated, thanks!
https://github.com/llvm/llvm-project/pull/124644
More information about the llvm-commits
mailing list