[llvm] [AMDGPU] Account for existing SDWA selections (PR #123221)
Jeffrey Byrnes via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 7 11:26:15 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:
I think that implementation doesn't really have any benefit over the current proposed one.
But in `potentialToConvert` , why can't we check the combo of the current operands sdwa sel and the corresponding sdwa sel of useMI if it is sdwa?
I don't understand why
> the way in which SDWASrcOperand::convertToSDWA determines SrcSel
blocks this ?
https://github.com/llvm/llvm-project/pull/123221
More information about the llvm-commits
mailing list