[llvm] [SLP] Make getSameOpcode support interchangeable instructions. (PR #127450)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 08:47:10 PST 2025
================
@@ -836,8 +1103,7 @@ class InstructionsState {
bool isAltShuffle() const { return getMainOp() != getAltOp(); }
bool isOpcodeOrAlt(Instruction *I) const {
- unsigned CheckedOpcode = I->getOpcode();
- return getOpcode() == CheckedOpcode || getAltOpcode() == CheckedOpcode;
+ return isConvertible(I, MainOp, AltOp);
----------------
alexey-bataev wrote:
Would be good to stop representing transformed nodes as nodes with the alternate InstructionsState. Instead, it should keep info that all instructions are homogeneous and build the correct operands for this, based on the the analysis, implemented here
https://github.com/llvm/llvm-project/pull/127450
More information about the llvm-commits
mailing list