[llvm] [AMDGPU] Account for existing SDWA selections (PR #123221)
Jeffrey Byrnes via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 12:49:22 PST 2025
================
@@ -108,6 +111,42 @@ class SDWAOperand {
MachineOperand *getReplacedOperand() const { return Replaced; }
MachineInstr *getParentInst() const { return Target->getParent(); }
+ /// Combine an SDWA instruction's existing SDWA selection \p
+ /// ExistingSel with the SDWA selection \p OpSel of its operand. If
+ /// the selections are compatible, return the combined selection,
+ /// otherwise return a nullopt. For example, if we have ExistingSel
+ /// = BYTE_0 Sel and FoldedSel WORD_1 Sel:
+ /// BYTE_0 Sel (WORD_1 Sel (%X)) -> BYTE_2 Sel (%X)
+ std::optional<SdwaSel> combineSdwaSel(SdwaSel ExistingSel,
----------------
jrbyrnes wrote:
Can we disallow the bad combos when checking if its possible to convert the op / MI ? This allows for early exit + removal of the std::optional
https://github.com/llvm/llvm-project/pull/123221
More information about the llvm-commits
mailing list