[llvm] [SLP] Make getSameOpcode support interchangeable instructions. (PR #133888)

Gaƫtan Bossu via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 03:18:19 PDT 2025


================
@@ -955,6 +1259,17 @@ static InstructionsState getSameOpcode(ArrayRef<Value *> VL,
       (VL.size() == 2 && InstCnt < 2))
     return InstructionsState::invalid();
 
+  auto FindInstructionWithOpcode = [&](unsigned Opcode) {
----------------
gbossu wrote:

Nit: I guess it could be made into a `unsigned findInstructionWithOpcode(unsigned Opcode, ArrayRef<Value*> VL)` free function just like you created above for `convertTo`.

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


More information about the llvm-commits mailing list