[llvm] [LV][NFC] Refactor code for extracting first active element (PR #131118)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 11:10:34 PDT 2025
================
@@ -461,6 +461,11 @@ Value *VPInstruction::generate(VPTransformState &State) {
Value *A = State.get(getOperand(0));
return Builder.CreateNot(A, Name);
}
+ case Instruction::ExtractElement: {
+ Value *Vec = State.get(getOperand(0));
+ Value *Idx = State.get(getOperand(1), true);
----------------
fhahn wrote:
I meant updating `VPInstruction::onlyFirstLaneUsed` to return true for the second operand of `ExtractElement`, as we only use the first lane during execute?
https://github.com/llvm/llvm-project/pull/131118
More information about the llvm-commits
mailing list