[llvm] [AMDGPU] Account for existing SDWA selections (PR #123221)

Jeffrey Byrnes via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 14:50:34 PST 2025


================
@@ -1285,10 +1374,12 @@ bool SIPeepholeSDWA::run(MachineFunction &MF) {
 
       for (const auto &OperandPair : SDWAOperands) {
         const auto &Operand = OperandPair.second;
-        MachineInstr *PotentialMI = Operand->potentialToConvert(TII, ST, &PotentialMatches);
-        if (PotentialMI && isConvertibleToSDWA(*PotentialMI, ST, TII)) {
+        MachineInstr *PotentialMI =
+            Operand->potentialToConvert(TII, ST, &PotentialMatches);
+
+        if (PotentialMI && isConvertibleToSDWA(*PotentialMI, ST, TII) &&
+            Operand->canCombineSelections(*PotentialMI, TII))
----------------
jrbyrnes wrote:

Think this is redundant if we're already checking from `Operand->potentialToConvert` above

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


More information about the llvm-commits mailing list