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

Frederik Harwath via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 03:39:11 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))
----------------
frederik-h wrote:

Before my last commit, there was no equivalent check in `potentialToConvert` (i.e. on the return value of that function), but I have now moved the call to `canCombineSelections` there; see also https://github.com/llvm/llvm-project/pull/123221#discussion_r1967148059. The call that already existed in `SDWASrcOperand::potentialToConvert` checks that the uses of the operand can also be converted to SDWA instructions. This is necessary in addition to the check of the return value of `potentialToConvert` since the uses are directly added to `PotentialMatches` from there (see function `op_select_byte_0_instr_select_word_1` in `llvm/test/CodeGen/AMDGPU/sdwa-peephole-instr-combine-sel2.mir` for an example which leads to a crash if this check is removed).

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


More information about the llvm-commits mailing list